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

:root {
    --primary: #2C3E50;
    --secondary: #E8C99B;
    --accent: #9B6B4A;
    --light: #F8F5F2;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
}

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

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

.narrow {
    max-width: 800px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 20px;
    opacity: 0.7;
}

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

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

nav a:hover {
    color: var(--accent);
}

.hero {
    padding: 200px 40px 120px;
    background-color: var(--light);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(155, 107, 74, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 68px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    font-weight: 300;
}

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

.cta-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.section {
    padding: 140px 40px;
}

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

.intro-block {
    background: var(--light);
}

.intro-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.intro-image {
    flex: 1;
    height: 500px;
    background-color: var(--secondary);
    background-size: cover;
    background-position: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-item:last-child {
    border-bottom: none;
}

.service-number {
    font-size: 60px;
    font-weight: 200;
    color: var(--secondary);
    line-height: 1;
    min-width: 80px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary);
}

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

.service-price {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent);
    margin-top: 20px;
}

.service-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.service-cta:hover {
    background: var(--accent);
}

.visual-section {
    height: 600px;
    background-color: var(--accent);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-overlay {
    background: rgba(44, 62, 80, 0.7);
    padding: 60px 80px;
    max-width: 700px;
    text-align: center;
}

.visual-overlay h2 {
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 25px;
}

.visual-overlay p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 60px;
}

.form-intro h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.submit-btn {
    padding: 20px 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--accent);
}

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 50px;
    background: var(--light);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text);
    font-weight: 300;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
}

.about-section {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 40px;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: block;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-email {
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    user-select: all;
}

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

.references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.references h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.reference-item {
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.reference-item a {
    color: var(--secondary);
    text-decoration: none;
}

.reference-item a:hover {
    text-decoration: underline;
}

.disclaimer {
    background: var(--light);
    padding: 60px 40px;
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 30px 40px;
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 40px;
}

.cookie-banner.active {
    display: flex;
}

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

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

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

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

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

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

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

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.thanks-message {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 40px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.btn-home {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-home:hover {
    background: var(--accent);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 140px 20px 80px;
    }

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

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

    .section {
        padding: 80px 20px;
    }

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

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

    .intro-image {
        height: 300px;
    }

    .service-item {
        flex-direction: column;
        gap: 20px;
    }

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