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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #d4a574;
    --accent-color: #2d5f7f;
    --text-dark: #1f1f1f;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #c29661;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text-wrapper h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text-wrapper p {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 16px;
}

.cta-primary:hover {
    background: #c29661;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,165,116,0.4);
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 80px 70px;
    background: var(--bg-light);
}

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

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
}

.benefits-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.why-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-preview {
    padding: 100px 40px;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1;
    min-width: 380px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.select-service.selected {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.process-split {
    display: flex;
    align-items: stretch;
}

.process-content {
    flex: 1;
    padding: 80px 70px;
    background: var(--primary-color);
    color: var(--white);
}

.process-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 25px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.process-image {
    flex: 1;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    padding: 100px 40px;
    background: var(--white);
}

.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.testimonial-cards {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.form-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.cta-strip {
    padding: 80px 40px;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content h3 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 16px;
}

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

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

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

.footer-column a {
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

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

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

.thanks-icon {
    font-size: 72px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-selected {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.service-selected strong {
    color: var(--primary-color);
    font-size: 17px;
}

.about-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 100px 40px;
    background: var(--white);
}

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

.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.services-list {
    padding: 100px 40px;
    background: var(--white);
}

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

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

.services-intro h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero {
    padding: 100px 40px;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    padding: 80px 40px;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.info-box h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.info-box p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.info-box strong {
    color: var(--primary-color);
}

.policy-page {
    padding: 100px 40px;
    background: var(--white);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.policy-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-container h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.policy-container ul,
.policy-container ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.policy-container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .process-split,
    .why-container,
    .contact-container {
        flex-direction: column;
    }

    .intro-split.reverse,
    .about-split.reverse {
        flex-direction: column;
    }

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

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 40px;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .hero-text-wrapper h1,
    .about-hero h1,
    .services-intro h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .intro-content h2,
    .why-text h2,
    .process-content h2,
    .testimonials-wrapper h2,
    .form-left h2 {
        font-size: 32px;
    }

    .hero-left,
    .intro-content,
    .process-content {
        padding: 50px 30px;
    }

    .services-preview,
    .why-section,
    .testimonials,
    .form-section {
        padding: 60px 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .testimonial-cards {
        flex-direction: column;
    }

    .footer-container {
        gap: 30px;
    }
}