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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.ad-disclosure {
    background-color: #ecf0f1;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #7f8c8d;
    border-bottom: 1px solid #bdc3c7;
}

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-standard {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-transparent .logo {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.header-transparent .nav-links a {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.hero-visual-dominant {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg-image {
    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: flex-start;
    padding: 2rem 4rem;
}

.hero-title-large {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    max-width: 600px;
    font-weight: 300;
}

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

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.intro-story p {
    margin-bottom: 1.5rem;
}

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

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

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

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

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

.insight-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

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

.trust-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
}

.trust-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.trust-card p {
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
    color: #546e7a;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-standard {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-centered {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.benefit-item p {
    line-height: 1.7;
    color: #546e7a;
}

.services-overview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.section-intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #546e7a;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    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-card img {
    width: 100%;
    height: auto;
    display: block;
    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;
    line-height: 1.6;
    color: #546e7a;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 1.5rem 1rem;
}

.btn-select-service {
    margin: 1.5rem;
    padding: 0.875rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: calc(100% - 3rem);
}

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

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

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-container > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #bdc3c7;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #546e7a;
}

.references-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

.references-list {
    list-style-position: inside;
}

.references-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

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

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

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

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

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

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.page-hero-minimal {
    padding: 6rem 2rem 3rem;
    background-color: #f8f9fa;
}

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

.about-story {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
}

.about-story p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    display: block;
    object-fit: cover;
}

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

.service-detailed {
    margin-bottom: 4rem;
}

.service-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-text {
    flex: 1;
}

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

.service-description {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #546e7a;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.btn-large {
    display: inline-block;
    padding: 1.125rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-large:hover {
    background-color: #2980b9;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item p {
    line-height: 1.6;
    color: #546e7a;
}

.contact-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-card a {
    color: #3498db;
    text-decoration: none;
}

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

.location-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #546e7a;
}

.thanks-content .btn-primary {
    margin-top: 2rem;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.update-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.7;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

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

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

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

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .split-content,
    .service-content-split {
        flex-direction: column;
    }

    .service-content-split.reverse {
        flex-direction: column;
    }

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

    .services-cards {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

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

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