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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.header-main {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand h1 {
    font-size: 28px;
    color: #2c5282;
    font-weight: 600;
}

.nav-main {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-main a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #2c5282;
}

.ad-label {
    font-size: 12px;
    color: #718096;
    background-color: #e2e8f0;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #edf2f7;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #edf2f7;
}

.hero-left h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a365d;
}

.btn-secondary {
    display: inline-block;
    background-color: #e2e8f0;
    color: #2c5282;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.intro-split {
    display: flex;
    padding: 80px 0;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.intro-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 0 20px;
}

.intro-text h3 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.ref-link {
    color: #2c5282;
    text-decoration: none;
    font-weight: 500;
}

.ref-link:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 80px 0;
    background-color: #f7fafc;
}

.services-preview h3 {
    font-size: 36px;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card img {
    width: 45%;
    object-fit: cover;
    background-color: #cbd5e0;
}

.service-info {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.service-info h4 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-info p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
}

.service-info .price {
    font-size: 20px;
    color: #2c5282;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: 16px;
}

.btn-select-service {
    background-color: #2c5282;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1a365d;
}

.form-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.form-left {
    flex: 0 0 300px;
}

.form-left h3 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 16px;
    font-weight: 600;
}

.form-left p {
    font-size: 16px;
    color: #4a5568;
}

.form-right {
    flex: 1;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.form-group input[readonly] {
    background-color: #f7fafc;
    color: #4a5568;
}

.btn-submit {
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-section h3 {
    font-size: 36px;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.trust-split {
    display: flex;
    gap: 40px;
    justify-content: center;
}

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

.trust-item h4 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 16px;
    font-weight: 600;
}

.trust-item p {
    font-size: 16px;
    color: #4a5568;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.disclaimer-text {
    font-size: 14px;
    color: #718096;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer-main {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h5 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.ref-item {
    font-size: 13px;
    color: #cbd5e0;
    margin-bottom: 10px;
}

.ref-item a {
    display: inline;
    color: #90cdf4;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    gap: 0;
    max-width: 1400px;
    margin: 60px auto;
}

.about-left {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    flex: 1;
    padding: 60px;
    background-color: #edf2f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right h2 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 24px;
    font-weight: 600;
}

.about-right p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.philosophy-section h3 {
    font-size: 36px;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.philosophy-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-text {
    flex: 1;
    padding: 0 20px;
}

.philosophy-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.philosophy-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.team-section h3 {
    font-size: 36px;
    color: #1a365d;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 0 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.team-member h4 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    color: #4a5568;
}

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-left {
    flex: 1;
    padding: 0 20px;
}

.approach-left h3 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.approach-list li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 600;
}

.approach-right {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-header {
    padding: 60px 0;
    background-color: #edf2f7;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-intro {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.service-detail-split:last-child {
    margin-bottom: 0;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
    padding: 0 20px;
}

.service-detail-text h3 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-detail-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-price {
    font-size: 22px;
    color: #2c5282;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    max-height: 400px;
}

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

.contact-hero {
    padding: 60px 0;
    background-color: #edf2f7;
    text-align: center;
}

.contact-hero h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: #4a5568;
}

.contact-content-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 80px auto;
}

.contact-left {
    flex: 1;
    padding: 0 20px;
}

.contact-left h3 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 32px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h4 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-right {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    max-height: 500px;
}

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

.faq-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.faq-section h3 {
    font-size: 36px;
    color: #1a365d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h4 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f7fafc;
    min-height: 60vh;
}

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

.thanks-content h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-section h2 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 28px;
    color: #1a365d;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 22px;
    color: #2c5282;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-section a {
    color: #2c5282;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: #e2e8f0;
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.btn-cookie {
    background-color: #2c5282;
    color: #ffffff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #1a365d;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #e2e8f0;
    padding: 10px 24px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .about-hero-split,
    .philosophy-split,
    .approach-split,
    .service-detail-split,
    .contact-content-split,
    .trust-split,
    .container-form {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .about-left,
    .about-right {
        min-height: 400px;
    }

    .services-grid-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
        height: 250px;
    }

    .team-grid {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .nav-main {
        flex-wrap: wrap;
        gap: 16px;
    }
}