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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2a2a2a;
}

.hero-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.hero-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-subtext {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

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

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

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #444;
}

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

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

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ddd;
}

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

.citation {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.visual-break {
    width: 100%;
    overflow: hidden;
    margin: 3rem 0;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #ddd;
}

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

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

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

.testimonial-card p {
    color: #ecf0f1;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit-item {
    flex: 1;
    min-width: 260px;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-showcase {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    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;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ddd;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #666;
    flex-grow: 1;
}

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

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.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 #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.science-references {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.science-references h3 {
    margin-bottom: 1rem;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.8rem;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

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

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

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

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

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

.footer-column p {
    color: #bbb;
    font-size: 0.9rem;
}

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

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

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
}

.disclaimer p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

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

.intro-text {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.approach-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.team-visual {
    width: 100%;
    overflow: hidden;
}

.team-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #ddd;
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.expertise-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.expertise-col {
    flex: 1;
    min-width: 300px;
}

.services-detailed {
    padding: 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ddd;
}

.service-detail-content {
    flex: 1;
    padding: 2.5rem;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.7rem;
    color: #555;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.cta-services {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    color: #ffffff;
}

.cta-services p {
    color: #ecf0f1;
    margin-bottom: 2rem;
}

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

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

.cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    margin-left: 1rem;
}

.cta-button.secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

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

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

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

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.email-note {
    font-size: 0.9rem;
    color: #888;
}

.contact-visual {
    width: 100%;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #ddd;
}

.contact-approach {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-content h1 {
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    margin: 1.5rem 0;
    color: #155724;
    font-weight: 600;
}

.thanks-actions {
    margin-top: 2rem;
}

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

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.step-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

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

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

.content-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.content-legal h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-legal h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.content-legal p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-legal ul,
.content-legal ol {
    margin: 1rem 0 1.5rem 2rem;
}

.content-legal li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.05rem;
    }

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: flex-start;
    }

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

    h2 {
        font-size: 1.8rem;
    }

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