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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4059;
    --accent-color: #c9a961;
    --light-bg: #f7f7f7;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

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

.ad-disclosure {
    background-color: var(--light-bg);
    color: var(--text-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--white);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #b59751;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

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

.intro-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 60px;
    background-color: var(--white);
}

.intro-text {
    flex: 1.2;
}

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

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

.intro-visual {
    flex: 0.8;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-block {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 90px 60px;
    background-color: var(--light-bg);
}

.insight-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.services-intro {
    text-align: center;
    padding: 80px 60px 40px;
    background-color: var(--white);
}

.services-intro h2 {
    font-size: 42px;
    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;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 60px 80px;
    background-color: var(--white);
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: calc(33.333% - 20px);
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
    background-color: var(--secondary-color);
}

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

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 25px 15px;
    line-height: 1.7;
}

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

.select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 90px 60px;
    background-color: var(--light-bg);
}

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

.form-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

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

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 45px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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-color);
}

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

.submit-btn:hover {
    background-color: #b59751;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 60px;
    background-color: var(--white);
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
}

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

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

.disclaimer-section {
    padding: 50px 60px;
    background-color: var(--light-bg);
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #c0c0c0;
}

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

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

.footer-section ul li a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 60px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-btn.accept:hover {
    background-color: #b59751;
}

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

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

.page-hero {
    padding: 80px 60px 60px;
    text-align: center;
    background-color: var(--light-bg);
}

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

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

.about-split {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 80px 60px;
    background-color: var(--white);
}

.about-content {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-block {
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.values-block h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    padding: 35px 30px;
    background-color: var(--white);
    border-radius: 8px;
}

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

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

.team-highlight {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 80px 60px;
    background-color: var(--white);
}

.team-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.team-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.team-text {
    flex: 1;
}

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

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

.cta-centered {
    text-align: center;
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.cta-centered h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-centered p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 60px 80px;
    background-color: var(--white);
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 70px;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background-color: var(--white);
}

.service-detail-image {
    flex: 0.9;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    flex: 1.1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.process-overview {
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.process-overview h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-layout {
    display: flex;
    gap: 70px;
    padding: 60px 60px 80px;
    background-color: var(--white);
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-section {
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.faq-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: calc(50% - 15px);
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

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

.legal-page > p:first-of-type {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.legal-page ul {
    margin: 15px 0 15px 25px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background-color: var(--light-bg);
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.cookie-table td {
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.thanks-content {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 80px 60px;
    background-color: var(--white);
    min-height: 500px;
}

.thanks-message {
    flex: 1;
}

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

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

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.thanks-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-offset,
    .insight-block,
    .about-split,
    .team-highlight,
    .contact-layout,
    .thanks-content {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .main-header {
        padding: 20px 30px;
    }

    .hero-content,
    .intro-offset,
    .insight-block,
    .services-intro,
    .service-cards,
    .form-section,
    .trust-indicators,
    .disclaimer-section,
    .page-hero,
    .about-split,
    .values-block,
    .team-highlight,
    .cta-centered,
    .services-detailed,
    .process-overview,
    .contact-layout,
    .faq-section,
    .legal-page,
    .thanks-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .service-card {
        max-width: calc(50% - 15px);
    }

    .trust-indicators,
    .values-grid {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .faq-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        gap: 20px;
    }

    .hero-content h1,
    .page-hero h1,
    .thanks-message h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .insight-content h2,
    .about-content h2,
    .team-text h2,
    .contact-info-block h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .services-intro h2,
    .values-block h2,
    .process-overview h2,
    .faq-section h2,
    .legal-page h1 {
        font-size: 32px;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }
}
