body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #000;
    background: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    background: #000;
    padding: 1rem 0;
}
.logo {
    height: 260px;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
nav {
    position: relative;
}
.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.menu li a {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}
.menu li a:hover {
    color: #f26522;
}
.menu li a.active {
    text-decoration: underline;
}
.hamburger {
    display: none;
    font-size: 2rem;
    color: white;
}
#menu-toggle {
    display: none;
}

.hero, .hero-secondary {
    background: #f26522;
    color: white;
    text-align: center;
    padding: 20px 20px 80px 20px;
}
.hero h1, .hero-secondary h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero p, .hero-secondary p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}

.hero-secondary p {
    text-align: left;
}
.hero-secondary p.center {
    text-align: center;
}
.btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    transition: background 0.3s;
}
.btn:hover {
    background: #333;
}

a.cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: background 0.3s;
}
a.cta:hover {
    background: #d1581f;
}

.about {
    padding: 60px 20px;
}
.about h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    margin-bottom: 1rem;
}
.about p {
    margin-bottom: 1rem;
    font-size: 18px;
}

.about a.cta {
    border-color: #000000;
}
.about a.cta:hover {
    background: #bababa;
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 14px;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        padding: 1rem;
    }
    #menu-toggle:checked + .hamburger + .menu {
        display: flex;
    }
    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 36px;

    }

    .contact-info {
        gap: 2rem;
    }
}
