* {
    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: #2d3748;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7d;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5f7d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: #1e4a5f;
}

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

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

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img,
.split-image img,
.service-image img,
.cta-visual img,
.service-detail-image img,
.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-primary,
.btn-secondary,
.btn-select,
.btn-submit {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2c5f7d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e4a5f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

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

.btn-select {
    background-color: #2c5f7d;
    color: #ffffff;
    width: 100%;
}

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

.btn-submit {
    background-color: #2c5f7d;
    color: #ffffff;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.intro-section,
.values-section {
    padding: 5rem 2rem;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    overflow: hidden;
    border-radius: 8px;
    min-height: 500px;
    position: relative;
}

.split-content h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.split-content p strong {
    color: #2d3748;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.75rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.25rem;
    color: #4a5568;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-info p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

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

.cta-content {
    flex: 1;
    background-color: #1a365d;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.booking-form {
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.form-group textarea {
    resize: vertical;
}

.main-footer {
    background-color: #2d3748;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 0.875rem;
}

.page-hero {
    background-color: #1a365d;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-centered p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.methodology {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

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

.content-centered h2 {
    font-size: 2.75rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.method-grid,
.directions-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.method-item,
.direction-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    text-align: left;
}

.method-item h3,
.direction-item h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.method-item p,
.direction-item p {
    color: #4a5568;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-bio {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: left;
}

.team-bio p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-centered {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.cta-box,
.cta-box-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #1a365d;
    color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.cta-box h2,
.cta-box-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.cta-box p,
.cta-box-centered p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-item {
    margin-bottom: 4rem;
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image,
.service-detail-content {
    flex: 1;
}

.service-detail-image {
    overflow: hidden;
    border-radius: 8px;
    min-height: 500px;
    position: relative;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #2d3748;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    color: #2c5f7d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-content {
    padding: 3rem 2rem;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

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

.contact-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    min-height: 600px;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.25rem;
    color: #2c5f7d;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.directions-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.section-intro {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.inquiry-cta {
    padding: 5rem 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #f7fafc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

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

.legal-updated {
    color: #718096;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: #2c5f7d;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.thanks-hero {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

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

.thanks-lead {
    font-size: 1.5rem;
    color: #2c5f7d;
    margin-bottom: 2rem;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.confirmation-details p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.confirmation-details p:last-child {
    margin-bottom: 0;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.steps-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5f7d;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.step-item p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-resources {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.resources-container h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.resources-container > p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.resource-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 260px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.resource-card:hover {
    transform: translateY(-4px);
}

.resource-card h3 {
    font-size: 1.25rem;
    color: #2c5f7d;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: #4a5568;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-split,
    .split-container,
    .cta-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-content h1,
    .hero-content-centered h1 {
        font-size: 2rem;
    }

    .split-content h2,
    .content-centered h2 {
        font-size: 2rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
