/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    color: #2d5f7e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d52;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3d52;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2d5f7e;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-right a {
    font-weight: 500;
    font-size: 15px;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left, .split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.split-right {
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a3d52;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2d5f7e;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
}

.cta-primary:hover {
    background-color: #1a3d52;
    color: #ffffff;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #2d5f7e;
    border: 2px solid #2d5f7e;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
}

.cta-secondary:hover {
    background-color: #2d5f7e;
    color: #ffffff;
}

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

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

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    color: #1a3d52;
    margin-bottom: 28px;
    line-height: 1.3;
}

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

/* Approach Split */
.approach-split {
    display: flex;
}

.approach-split .split-left {
    background-color: #ffffff;
}

.approach-content {
    max-width: 540px;
}

.approach-content h2 {
    font-size: 38px;
    color: #1a3d52;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.approach-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
}

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

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f7fafc;
}

.services-section h2 {
    font-size: 40px;
    color: #1a3d52;
    margin-bottom: 16px;
    text-align: center;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 22px;
    color: #1a3d52;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f7e;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #2d5f7e;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
}

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

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #1a3d52;
    color: #ffffff;
}

.testimonial-section blockquote {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #e2e8f0;
    margin: 0;
}

.testimonial-section cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    color: #cbd5e0;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    color: #1a3d52;
    margin-bottom: 20px;
}

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

.form-note {
    font-size: 15px;
    color: #718096;
}

.form-right {
    flex: 1;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5f7e;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
}

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

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background-color: #f7fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    color: #1a3d52;
    margin-bottom: 16px;
}

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

/* About Split */
.about-split {
    display: flex;
    padding: 80px 0;
}

.about-split .split-left {
    background-color: #ffffff;
}

.about-content {
    max-width: 540px;
}

.about-content h2 {
    font-size: 36px;
    color: #1a3d52;
    margin-bottom: 24px;
}

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

.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

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

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.philosophy-section h2 {
    font-size: 36px;
    color: #1a3d52;
    margin-bottom: 24px;
}

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

/* Values Split */
.values-split {
    display: flex;
    padding: 80px 0;
}

.values-split .split-left {
    background-color: #ffffff;
}

.values-content {
    max-width: 540px;
}

.values-content h2 {
    font-size: 36px;
    color: #1a3d52;
    margin-bottom: 28px;
}

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

.values-list li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f7e;
    font-weight: 700;
}

.values-list strong {
    color: #1a3d52;
}

.values-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

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

/* Approach Detail */
.approach-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.approach-detail h2 {
    font-size: 36px;
    color: #1a3d52;
    margin-bottom: 50px;
    text-align: center;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2d5f7e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 22px;
    color: #1a3d52;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    color: #4a5568;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f7fafc;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #1a3d52;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-right h2 {
    font-size: 32px;
    color: #1a3d52;
    margin-bottom: 20px;
}

.service-detail-left h2 {
    font-size: 32px;
    color: #1a3d52;
    margin-bottom: 20px;
}

.service-detail-right p,
.service-detail-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    margin: 24px 0;
}

.service-benefits li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f7e;
    margin: 24px 0;
}

.btn-select-large {
    padding: 16px 32px;
    background-color: #2d5f7e;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
}

.btn-select-large:hover {
    background-color: #1a3d52;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background-color: #f7fafc;
    text-align: center;
}

.service-cta h2 {
    font-size: 32px;
    color: #1a3d52;
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

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

.contact-info-side h2 {
    font-size: 32px;
    color: #1a3d52;
    margin-bottom: 30px;
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h3 {
    font-size: 18px;
    color: #2d5f7e;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #4a5568;
    margin: 0;
}

.contact-form-side {
    flex: 1;
}

.contact-form-side h2 {
    font-size: 32px;
    color: #1a3d52;
    margin-bottom: 30px;
}

/* Thanks Section */
.thanks-section {
    padding: 120px 0;
    background-color: #f7fafc;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-container h1 {
    font-size: 40px;
    color: #1a3d52;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    color: #1a3d52;
    margin-bottom: 16px;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.thanks-info li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f7e;
    font-weight: 700;
}

.selected-service-info {
    margin: 30px 0;
}

.selected-service {
    font-size: 17px;
    color: #2d5f7e;
    padding: 16px;
    background-color: #e6f3f8;
    border-radius: 6px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 32px;
    background-color: #2d5f7e;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
}

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

.btn-secondary {
    padding: 16px 32px;
    background-color: transparent;
    color: #2d5f7e;
    border: 2px solid #2d5f7e;
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #2d5f7e;
    color: #ffffff;
}

/* Legal Page */
.legal-page {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    color: #1a3d52;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 15px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a3d52;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2d5f7e;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

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

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

.cookie-table th,
.cookie-table td {
    border: 1px solid #e2e8f0;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #1a3d52;
}

.cookie-table td {
    font-size: 15px;
    color: #4a5568;
}

.cookie-preference-reset {
    margin: 40px 0;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.btn-reset-cookies {
    padding: 14px 28px;
    background-color: #2d5f7e;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}

.btn-reset-cookies:hover {
    background-color: #1a3d52;
}

.preference-note {
    font-size: 14px;
    color: #718096;
    margin-top: 12px;
}

/* Footer */
.main-footer {
    background-color: #1a3d52;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

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

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e0;
    font-size: 15px;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #a0aec0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid #2d5f7e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split,
    .approach-split,
    .about-split,
    .values-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 60px 40px;
    }

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

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

    .form-container,
    .contact-container {
        flex-direction: column;
    }

    .nav-right {
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .container,
    .container-narrow {
        padding: 0 20px;
    }

    .services-grid {
        gap: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-item {
        gap: 20px;
    }
}