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

:root {
    --primary: #2C5F4D;
    --secondary: #D4A574;
    --accent: #8B7355;
    --light: #F4EFE9;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.ad-disclosure {
    background: var(--light);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid #e0e0e0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 77, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 720px;
    padding: 80px 40px;
}

.hero h1 {
    font-size: 68px;
    font-weight: 300;
    margin-bottom: 35px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 45px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 18px 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section {
    padding: 120px 40px;
}

.section-light {
    background: var(--light);
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.intro-block {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 25px);
    min-width: 450px;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
}

.service-card p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-light);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 25px;
}

.image-section {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--light);
}

.image-overlay {
    background: rgba(44, 95, 77, 0.75);
    padding: 60px;
    max-width: 700px;
    color: var(--white);
}

.image-overlay h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 300;
}

.image-overlay p {
    font-size: 18px;
    line-height: 1.7;
}

.form-section {
    background: var(--primary);
    color: var(--white);
    padding: 100px 40px;
}

.form-section .section-title {
    color: var(--white);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 18px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 300;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: var(--light);
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary);
    font-weight: 300;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

footer {
    background: var(--text);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--secondary);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary);
    font-weight: 300;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
    font-weight: 500;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text);
    font-weight: 500;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: var(--white);
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--accent);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: var(--white);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 300;
}

.thanks-content p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.disclaimer {
    background: var(--light);
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid var(--secondary);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        min-width: 100%;
    }

    .about-layout {
        flex-direction: column;
        gap: 50px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 25px;
        font-size: 14px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 17px;
    }

    .section {
        padding: 80px 25px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .service-card {
        padding: 35px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .container,
    nav {
        padding-left: 25px;
        padding-right: 25px;
    }
}
