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

.navigation {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.hero-visual {
    width: 100%;
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    max-width: 900px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #ffffff;
    max-width: 700px;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.story-container p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.visual-insight {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.insight-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.insight-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

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

.image-story {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background-color: #34495e;
}

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

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 4rem 2rem;
    color: #ffffff;
}

.story-overlay h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

.story-overlay p {
    font-size: 1.2rem;
    max-width: 700px;
}

.trust-builder {
    padding: 6rem 2rem;
    background-color: #ecf0f1;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.trust-item p {
    font-size: 1.05rem;
    color: #34495e;
}

.testimonial-visual {
    padding: 6rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-style: normal;
}

.services-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.service-card {
    flex: 1;
    min-width: 350px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #34495e;
    font-size: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 1.5rem;
}

.service-cta {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #34495e;
    font-size: 1.05rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #229954;
}

.final-visual {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background-color: #34495e;
}

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

.final-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.final-overlay h2 {
    font-size: 3rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.references {
    padding-left: 1.2rem;
}

.references li {
    margin-bottom: 0.7rem;
}

.references li a {
    color: #3498db;
    text-decoration: none;
}

.references li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.page-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    background-color: #34495e;
}

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

.page-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.page-hero-overlay h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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

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

.content-container h2 {
    font-size: 2.3rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
}

.content-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.about-principles {
    margin: 3rem 0;
}

.principle {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.principle h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.principle p {
    font-size: 1.05rem;
    color: #34495e;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-header p {
    font-size: 1.2rem;
    color: #34495e;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.service-detail-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-detail-cta:hover {
    background-color: #2980b9;
}

.services-cta {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #229954;
}

.contact-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.contact-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #34495e;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.contact-note p {
    font-size: 1.05rem;
    color: #2c3e50;
}

.contact-note a {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-page {
    padding: 8rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.thanks-service {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.thanks-service p {
    margin: 0;
}

.thanks-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-cta:hover {
    background-color: #2980b9;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    margin-bottom: 0.7rem;
    color: #34495e;
    line-height: 1.6;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
    }

    .story-overlay h2 {
        font-size: 2rem;
    }

    .final-overlay h2 {
        font-size: 2rem;
    }
}