* {
    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: #ffffff;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

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

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

.ad-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    border-radius: 3px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

.hero-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.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.story-intro {
    padding: 100px 20px;
    background: #f8f9fa;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #2c3e50;
}

.story-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.visual-break {
    width: 100%;
}

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

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

.visual-left {
    background-color: #95a5a6;
}

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

.visual-right {
    display: flex;
    align-items: center;
    background: #ecf0f1;
    padding: 60px;
}

.content-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.content-block p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.insight-section {
    padding: 100px 20px;
    background: #ffffff;
}

.insight-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.insight-text {
    font-size: 19px;
    margin-bottom: 50px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

.pillars-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pillar-card {
    flex: 1;
    min-width: 240px;
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #e74c3c;
}

.pillar-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.pillar-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.insight-reference {
    font-size: 14px;
    color: #777;
    text-align: center;
}

.insight-reference a {
    color: #3498db;
    text-decoration: none;
}

.insight-reference a:hover {
    text-decoration: underline;
}

.trust-builder {
    padding: 100px 20px;
    background: #2c3e50;
}

.centered-heading {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.testimonials-flow {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    background-color: #34495e;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    color: #ffffff;
    padding: 40px 30px;
}

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

.testimonial-overlay cite {
    font-size: 14px;
    font-style: normal;
    opacity: 0.9;
}

.approach-reveal {
    padding: 100px 20px;
    background: #ffffff;
}

.approach-reveal h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-approach {
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.phase-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.phase-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.phase-number {
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.phase-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.phase-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.benefits-visual {
    padding: 100px 20px;
    background: #f8f9fa;
}

.benefits-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-card {
    background: #ffffff;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

.benefit-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.benefit-text {
    padding: 30px;
}

.benefit-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.services-preview {
    padding: 100px 20px;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.services-intro {
    font-size: 18px;
    margin-bottom: 60px;
    text-align: center;
    color: #555;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-option {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    overflow: hidden;
    flex-wrap: wrap;
}

.service-visual {
    flex: 1;
    min-width: 300px;
    background-color: #95a5a6;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.service-details {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.service-includes {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 30px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-form-section {
    padding: 100px 20px;
    background: #ecf0f1;
}

.cta-form-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 50px;
    text-align: center;
    color: #555;
}

.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: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    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: #3498db;
}

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.scientific-references {
    padding: 60px 20px;
    background: #f8f9fa;
}

.scientific-references h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

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

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

.disclaimer-section {
    padding: 60px 20px;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

    .hero-subtitle {
        font-size: 16px;
    }

    .split-visual {
        flex-direction: column;
    }

    .section-heading,
    .insight-title,
    .centered-heading {
        font-size: 28px;
    }

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

    .testimonials-flow {
        flex-direction: column;
    }

    .phase-item {
        flex-direction: column;
        gap: 15px;
    }

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

    .benefits-container {
        flex-direction: column;
    }
}