body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

header {
    background-color: #000 !important;
    color: #fff !important;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    flex-grow: 1;
}

header .spect {
    color: #f28c38 !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav {
    margin-top: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f28c38;
}

section {
    padding: 3rem 0;
    background-color: #f5f5f5 !important;
}

section .container {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    padding: 2rem;
    background-color: #fff !important;
    border-radius: 8px;
    display: block;
}

#reports {
    background-color: #f5f5f5 !important;
}

.reports-note {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    color: #333;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-grid, .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item, .project-item {
    text-align: center;
    padding: 1rem;
    background-color: #fff !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px;
}

.project-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    background-color: #f28c38 !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d47a30 !important;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin: 0.5rem 0 0.2rem;
}

form input, form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form input::placeholder, form textarea::placeholder {
    color: #888 !important;
    opacity: 1;
}

form textarea {
    height: 150px;
}

.hidden {
    display: none !important;
}

footer {
    background-color: #000 !important;
    color: #fff !important;
    text-align: center;
    padding: 1rem 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        display: none;
        margin-top: 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        background-color: #000 !important;
        padding: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    nav ul li a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem;
    }

    .container {
        padding: 0 10px;
        display: block;
    }

    header h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    section .container {
        padding: 1rem;
        display: block;
    }

    .reports-note {
        font-size: 1rem;
    }
}
