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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
    margin-right: 10px;
}

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

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

.hero-visual {
    width: 100%;
    background-color: #f8f9fa;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.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;
    padding: 40px;
    text-align: center;
}

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

.hero-subtext {
    font-size: 20px;
    color: #ffffff;
    max-width: 700px;
    line-height: 1.6;
}

.story-intro {
    padding: 80px 40px;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.opening-line {
    font-size: 22px;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 24px;
}

.narrow-content p {
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

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

.insight-reveal {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.centered-block h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-text {
    font-size: 24px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.centered-block p {
    font-size: 18px;
    color: #f1f1f1;
    line-height: 1.8;
    margin-bottom: 16px;
}

.how-it-works {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.content-wrapper h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-flow {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.trust-building {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

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

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 80px 40px;
    background-color: #ffffff;
}

.alternating-benefits {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.benefit-block.left {
    flex-direction: row;
}

.benefit-block.right {
    flex-direction: row-reverse;
}

.benefit-content {
    flex: 1;
}

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

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

.benefit-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.scientific-backing {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.solutions-pricing {
    padding: 100px 40px;
    background-color: #ffffff;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro p {
    font-size: 17px;
    color: #555;
}

.pricing-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #3498db;
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3498db;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    text-align: center;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.cta-select {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.consultation-form-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

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

.consultation-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.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 {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff9e6;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
}

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

.references-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

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

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 2;
}

.references-list li {
    margin-bottom: 10px;
}

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

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

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

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

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

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

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    text-align: center;
}

.hero-content-wrapper h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
}

.about-story,
.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-block,
.mission-block,
.approach-block,
.values-block,
.team-block {
    max-width: 900px;
    margin: 0 auto 60px;
}

.story-block h2,
.mission-block h2,
.approach-block h2,
.values-block h2,
.team-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-block p,
.mission-block p,
.approach-block p,
.values-block p,
.team-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

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

.service-cta {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.info-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.service-areas {
    list-style-position: inside;
    margin-top: 10px;
}

.service-areas li {
    padding: 5px 0;
}

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

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.map-overlay p {
    margin: 5px 0;
}

.map-address {
    font-size: 14px;
    color: #ecf0f1;
}

.contact-note {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.note-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.note-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.thanks-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.confirmation-message {
    font-size: 18px;
    color: #ecf0f1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-selected {
    margin-top: 20px;
}

.selected-service {
    font-size: 17px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 6px;
}

.next-steps {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.steps-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.thanks-info {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.info-boxes {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.thanks-cta {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-container p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.secondary-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.effective-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-subtext {
        font-size: 18px;
    }

    .split-layout,
    .benefit-block,
    .service-item,
    .contact-layout {
        flex-direction: column;
    }

    .benefit-block.right {
        flex-direction: column;
    }

    .pricing-grid,
    .process-flow,
    .steps-grid {
        flex-direction: column;
    }
}
