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

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

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

.main-header {
    background-color: #1D3557;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #F1FAEE;
    text-decoration: none;
}

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

.main-nav a {
    color: #F1FAEE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #F1FAEE;
    opacity: 0.7;
    padding: 5px 10px;
    border: 1px solid rgba(241, 250, 238, 0.3);
    border-radius: 4px;
}

.hero-section {
    position: relative;
    min-height: 600px;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.85), rgba(230, 57, 70, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #F1FAEE;
    max-width: 720px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #E63946;
    color: #F1FAEE;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #D62839;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 20px;
    background-color: #F1FAEE;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1D3557;
}

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

.problem-section {
    padding: 80px 20px;
}

.dark-section {
    background-color: #1D3557;
    color: #F1FAEE;
}

.dark-section h2 {
    color: #F1FAEE;
}

.two-column {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.two-column.reverse {
    flex-direction: row-reverse;
}

.column-text {
    flex: 1;
    min-width: 300px;
}

.column-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.column-text p {
    font-size: 17px;
    margin-bottom: 15px;
}

.column-image {
    flex: 1;
    min-width: 300px;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.insight-section {
    padding: 80px 20px;
    background-color: #F1FAEE;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1D3557;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2B2D42;
}

.citation {
    color: #E63946;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-section {
    padding: 80px 20px;
    background-color: #F1FAEE;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1D3557;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #E0E0E0;
}

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1D3557;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #2B2D42;
    flex-grow: 1;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #E63946;
    margin-bottom: 15px;
}

.select-service {
    background-color: #1D3557;
    color: #F1FAEE;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.select-service:hover {
    background-color: #2B4570;
}

.testimonials-section {
    padding: 80px 20px;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial {
    background-color: rgba(241, 250, 238, 0.1);
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #E63946;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    opacity: 0.8;
    text-align: right;
}

.form-section {
    padding: 80px 20px;
    background-color: white;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1D3557;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    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: #1D3557;
}

.btn-submit {
    background-color: #E63946;
    color: #F1FAEE;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: #1D3557;
    color: #F1FAEE;
    padding: 50px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #F1FAEE;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #F1FAEE;
    opacity: 0.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-column a:hover {
    opacity: 1;
    color: #E63946;
}

.reference-item {
    font-size: 13px;
    margin-bottom: 10px;
}

.reference-item a {
    color: #E63946;
    display: inline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(241, 250, 238, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1D3557;
    color: #F1FAEE;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #E63946;
    color: #F1FAEE;
}

.cookie-btn.accept:hover {
    background-color: #D62839;
}

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

.cookie-btn.reject:hover {
    background-color: rgba(241, 250, 238, 0.1);
}

.page-hero {
    background-color: #1D3557;
    color: #F1FAEE;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.story-section {
    padding: 80px 20px;
    background-color: #F1FAEE;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1D3557;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2B2D42;
}

.values-section {
    padding: 80px 20px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

.value-card {
    background-color: rgba(241, 250, 238, 0.1);
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
    max-width: 500px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #F1FAEE;
}

.value-card p {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    padding: 80px 20px;
    background-color: white;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1D3557;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2B2D42;
}

.facility-section {
    padding: 80px 20px;
    background-color: #F1FAEE;
}

.approach-section {
    padding: 80px 20px;
    background-color: white;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1D3557;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2B2D42;
}

.services-detail-section {
    padding: 80px 20px;
    background-color: #F1FAEE;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 60px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1D3557;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #E63946;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #2B2D42;
}

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

.service-benefits li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
}

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

.contact-section {
    padding: 80px 20px;
    background-color: #F1FAEE;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1D3557;
}

.contact-detail p {
    font-size: 16px;
    color: #2B2D42;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    background-color: #ddd;
    height: 400px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.info-section {
    padding: 80px 20px;
    background-color: white;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1D3557;
}

.info-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2B2D42;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #F1FAEE;
}

.center-text {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #E63946;
    color: #F1FAEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1D3557;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2B2D42;
}

.thanks-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #2B2D42;
}

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

.btn-primary {
    background-color: #E63946;
    color: #F1FAEE;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background-color: #1D3557;
    color: #F1FAEE;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

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

.legal-page {
    padding: 80px 20px;
    background-color: #F1FAEE;
}

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

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

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

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

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-page a {
    color: #E63946;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .two-column,
    .two-column.reverse {
        flex-direction: column;
    }

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

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

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

    .section-title {
        font-size: 32px;
    }
}