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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a4d69;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2a4d69;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2a4d69;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    cursor: pointer;
}

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

/* Value Split Section */
.value-split {
    display: flex;
}

.value-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.value-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
}

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

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

/* Services Section */
.services-intro {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Services Split List */
.services-split-list {
    background-color: #ffffff;
}

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

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.service-content-left p,
.service-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2a4d69;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.875rem 1.75rem;
    background-color: #4b86b4;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #3a6a91;
}

.service-image-left,
.service-image-right {
    flex: 1;
    overflow: hidden;
}

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

/* Form Split Section */
.form-split {
    display: flex;
    min-height: 600px;
    background-color: #f5f5f5;
}

.form-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2a4d69;
    color: #ffffff;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.15rem;
}

.form-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.selected-service-display {
    padding: 1rem;
    background-color: #e8f4f8;
    border-left: 4px solid #2a4d69;
    color: #333;
    font-weight: 600;
    border-radius: 4px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2a4d69;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Testimonial Split */
.testimonial-split {
    display: flex;
    min-height: 400px;
}

.testimonial-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

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

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 500px;
}

.hero-content-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.hero-content-left h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: #666;
}

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

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

/* About Story Split */
.about-story-split {
    display: flex;
    min-height: 500px;
}

.story-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
}

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

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

/* Values Split */
.values-split {
    display: flex;
    min-height: 500px;
}

.values-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-left h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2a4d69;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
}

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

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

/* Team Section */
.team-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 1 1 250px;
    max-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a4d69;
}

.team-member p {
    font-size: 1rem;
    color: #666;
}

/* CTA Split */
.cta-split {
    display: flex;
    min-height: 350px;
}

.cta-content-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2a4d69;
    color: #ffffff;
}

.cta-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2a4d69;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    cursor: pointer;
    align-self: flex-start;
}

.btn-cta-primary:hover {
    background-color: #f0f0f0;
}

.cta-visual-right {
    flex: 1;
}

/* Services Detailed */
.services-detailed {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-info-left,
.service-info-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e8f4f8;
    color: #2a4d69;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-info-left h2,
.service-info-right h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.service-info-left p,
.service-info-right p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.service-info-left ul,
.service-info-right ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-info-left ul li,
.service-info-right ul li {
    list-style: disc;
    margin-bottom: 0.75rem;
    color: #555;
}

.price-highlight {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2a4d69;
    margin-bottom: 1.5rem;
}

.service-visual-left,
.service-visual-right {
    flex: 1;
    overflow: hidden;
}

.service-visual-left img,
.service-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    min-height: 500px;
}

.contact-details-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details-left h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2a4d69;
}

.contact-block p {
    font-size: 1.05rem;
    color: #555;
}

.contact-map-right {
    flex: 1;
    overflow: hidden;
}

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

/* Contact Extra Section */
.contact-extra {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.contact-extra h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a4d69;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
}

/* Thanks Page */
.thanks-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #2a9d8f;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-main {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.thanks-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2a4d69;
    text-align: center;
}

.thanks-next-steps ol {
    padding-left: 2rem;
}

.thanks-next-steps ol li {
    list-style: decimal;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2a4d69;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    cursor: pointer;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #4b86b4;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    cursor: pointer;
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a4d69;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    list-style: disc;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: #2a4d69;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1e3a50;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookies-table td {
    font-size: 1rem;
    color: #555;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2a9d8f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #238d7f;
}

.btn-reject {
    background-color: #666;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #555;
}

.btn-learn-more {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #666;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s;
}

.btn-learn-more:hover {
    border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .value-split,
    .service-item-split,
    .form-split,
    .testimonial-split,
    .page-hero-split,
    .about-story-split,
    .values-split,
    .service-detail-split,
    .contact-info-split,
    .cta-split {
        flex-direction: column;
    }

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

    .hero-left h1,
    .hero-content-left h1 {
        font-size: 2.25rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

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