* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #202124;
    line-height: 1.6;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.logo span {
    color: #c87b2b;
}

nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: #333333;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: #c87b2b;
}

.menu-btn {
    display: none;
    border: none;
    background: #c87b2b;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 22px;
    cursor: pointer;
}

.hero {
    min-height: 650px;
    background:
        linear-gradient(120deg, rgba(17, 24, 39, 0.92), rgba(200, 123, 43, 0.78)),
        url("https://images.unsplash.com/photo-1556905055-8f358a7a47b2?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.tagline {
    color: #c87b2b;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero .tagline {
    color: #ffe2bd;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 720px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background: #c87b2b;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #a8611e;
}

.btn.secondary {
    background: #ffffff;
    color: #111827;
}

.btn.full {
    width: 100%;
}

.hero-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 18px;
}

.hero-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.hero-card ul {
    list-style: none;
}

.hero-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
    padding: 80px 0;
}

.section.light {
    background: #faf7f3;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-title h2,
.two-col h2,
.contact-grid h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #111827;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    padding: 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.card h3 {
    color: #111827;
    margin-bottom: 10px;
    font-size: 22px;
}

.cta {
    background: #111827;
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.cta h2 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
}

.page-banner {
    background: linear-gradient(120deg, #111827, #c87b2b);
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: clamp(38px, 5vw, 58px);
}

.two-col,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 50px;
    align-items: start;
}

.info-box {
    background: #111827;
    color: #ffffff;
    padding: 34px;
    border-radius: 18px;
}

.info-box h3 {
    margin-bottom: 15px;
    font-size: 25px;
}

.info-box ul {
    padding-left: 22px;
}

.center-text {
    max-width: 850px;
    margin: auto;
    text-align: center;
    font-size: 18px;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    padding: 26px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.process-item span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: #c87b2b;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 20px;
}

.process-item h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.contact-info {
    margin-top: 25px;
    background: #faf7f3;
    padding: 24px;
    border-radius: 14px;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c87b2b;
}

.success-msg {
    margin-top: 15px;
    background: #e8f8ee;
    color: #146c2e;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
}

.terms {
    max-width: 900px;
}

.terms h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.terms h3 {
    margin-top: 22px;
    color: #111827;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 35px;
}

.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    margin-bottom: 12px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #d1d5db;
}

.site-footer a:hover {
    color: #c87b2b;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    }

    nav.show {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-content,
    .two-col,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .process-item {
        grid-template-columns: 1fr;
    }
}