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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c5f77;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f77;
}

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c5f77;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #2c5f77;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5f77;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c5f77;
    color: #fff;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.intro-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.services-intro {
    padding: 80px 5%;
    text-align: center;
    background-color: #f9f9f9;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    min-height: 450px;
}

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

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
}

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

.btn-select-service {
    padding: 14px 28px;
    background-color: #2c5f77;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-section-split {
    display: flex;
    background-color: #f9f9f9;
    padding: 60px 0;
}

.form-intro {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.form-container {
    flex: 1;
    padding: 40px 60px;
    background-color: #fff;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5f77;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-us-split {
    display: flex;
    min-height: 500px;
}

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

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

.why-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f77;
    font-weight: bold;
    font-size: 20px;
}

.why-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.disclaimer-section {
    padding: 40px 5%;
    background-color: #f5f5f5;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 5% 30px;
}

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

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

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

.footer-col p {
    color: #aaa;
    font-size: 14px;
}

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #2c5f77;
    color: #fff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    opacity: 0.8;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-color: #f9f9f9;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.thanks-service-info {
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    margin: 24px 0;
}

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

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

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

.about-hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 20px;
    color: #555;
}

.about-hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.story-split {
    display: flex;
    min-height: 500px;
}

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

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.story-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.values-split {
    display: flex;
    min-height: 500px;
    background-color: #f9f9f9;
}

.values-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.values-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

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

.values-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: #555;
}

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

.values-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.team-section {
    padding: 80px 5%;
    background-color: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-role {
    font-size: 14px;
    color: #2c5f77;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.approach-split {
    display: flex;
    min-height: 500px;
}

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

.approach-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.approach-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.commitment-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

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

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

.commitment-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-hero {
    padding: 100px 5%;
    background-color: #2c5f77;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #fff;
}

.services-hero-content p {
    font-size: 20px;
    color: #e0e0e0;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.service-detail-content ul {
    margin-bottom: 24px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin: 24px 0;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f77;
    margin-bottom: 4px;
}

.price-note {
    font-size: 14px;
    color: #666;
}

.contact-hero {
    padding: 80px 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 20px;
    color: #666;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c5f77;
}

.contact-item p {
    font-size: 17px;
    color: #555;
}

.contact-note {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 24px;
}

.contact-note p {
    font-size: 15px;
    color: #666;
}

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.visit-info-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

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

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

.visit-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.how-we-work-split {
    display: flex;
    min-height: 500px;
}

.how-we-work-split.reverse {
    flex-direction: row-reverse;
}

.how-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.how-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.process-list {
    padding-left: 20px;
}

.process-list li {
    margin-bottom: 16px;
    font-size: 17px;
    color: #555;
}

.process-list li strong {
    color: #2c5f77;
}

.faq-section {
    padding: 80px 5%;
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f77;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

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

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

.legal-content p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

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

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .why-us-split,
    .about-hero-split,
    .story-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .how-we-work-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card-split.reverse,
    .story-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse,
    .how-we-work-split.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .services-hero-content h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .footer-columns {
        flex-direction: column;
    }
}