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

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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: relative;
    z-index: 100;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    letter-spacing: -0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #27ae60;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-image-wrapper 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;
    color: #ffffff;
    padding: 40px;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
    opacity: 0.95;
}

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

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

.opening-line {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #34495e;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.problem-amplification {
    background-color: #ecf0f1;
    padding: 90px 30px;
}

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

.split-text {
    flex: 1;
}

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

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

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

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

.insight-list {
    margin: 25px 0;
    padding-left: 25px;
}

.insight-list li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.insight-reveal {
    background-color: #ffffff;
    padding: 90px 30px;
}

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

.centered-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #34495e;
}

.grid-insights {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.insight-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 35px;
    border-left: 4px solid #27ae60;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #27ae60;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
}

.science-backing {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 70px 30px;
}

.science-backing h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 34px;
}

.science-backing p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.testimonials-inline {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

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

.testimonial-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.testimonial-item img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #bdc3c7;
}

.testimonial-item blockquote {
    flex: 1;
}

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

.testimonial-item cite {
    font-size: 15px;
    font-style: normal;
    color: #7f8c8d;
}

.benefits-reveal {
    background-color: #ffffff;
    padding: 100px 30px;
}

.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
}

.benefits-text {
    flex: 1.2;
}

.benefits-visual {
    flex: 0.8;
    background-color: #bdc3c7;
}

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

.benefits-text h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.benefit-item {
    margin-bottom: 35px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #27ae60;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.offer-section {
    background-color: #ecf0f1;
    padding: 90px 30px;
}

.section-intro {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 3px solid #27ae60;
    position: relative;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0 15px 0;
}

.select-service {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #ffffff;
    padding: 80px 30px;
}

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

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

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

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

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

.final-cta {
    background-color: #27ae60;
    color: #ffffff;
    padding: 70px 30px;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-block;
    background-color: #ffffff;
    color: #27ae60;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.disclaimer {
    background-color: #f8f9fa;
    padding: 50px 30px;
    border-top: 2px solid #e0e0e0;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
}

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

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #27ae60;
}

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

.references li {
    margin-bottom: 8px;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.about-content {
    background-color: #ffffff;
    padding: 90px 30px;
}

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

.about-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-section {
    background-color: #ecf0f1;
    padding: 80px 30px;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.mission-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    background-color: #ffffff;
    padding: 90px 30px;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
}

.approach-section {
    background-color: #ecf0f1;
    padding: 90px 30px;
}

.approach-list {
    margin: 25px 0;
    padding-left: 25px;
}

.approach-list li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.commitment-section {
    background-color: #ffffff;
    padding: 80px 30px;
}

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

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

.services-intro {
    background-color: #ffffff;
    padding: 60px 30px 30px 30px;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
}

.services-grid {
    background-color: #f8f9fa;
    padding: 60px 30px;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    gap: 0;
}

.service-detail-card.featured-service {
    border: 3px solid #27ae60;
}

.service-image {
    flex: 0 0 400px;
    background-color: #bdc3c7;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #27ae60;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #34495e;
}

.service-info h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-features-detailed {
    list-style: none;
    margin: 15px 0;
}

.service-features-detailed li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

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

.ideal-for {
    font-size: 15px;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 20px;
}

.service-price-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #ecf0f1;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.select-service-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-cta {
    background-color: #27ae60;
    color: #ffffff;
    padding: 70px 30px;
}

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

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #27ae60;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

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

.contact-content {
    background-color: #ffffff;
    padding: 90px 30px;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #27ae60;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #bdc3c7;
}

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

.additional-info {
    background-color: #ecf0f1;
    padding: 80px 30px;
}

.additional-info h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #27ae60;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

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

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

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    color: #ffffff;
}

.thanks-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.thanks-details {
    background-color: #ffffff;
    padding: 80px 30px;
}

.thanks-details h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.next-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-program-info {
    background-color: #ecf0f1;
    padding: 60px 30px;
}

.thanks-program-info h2 {
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.selected-program {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.selected-program p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-additional {
    background-color: #ffffff;
    padding: 70px 30px;
}

.thanks-tips {
    background-color: #f8f9fa;
    padding: 70px 30px;
}

.thanks-tips h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-tips p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.tips-list {
    list-style: none;
    margin: 20px 0;
}

.tips-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.tips-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.legal-page {
    background-color: #ffffff;
    padding: 60px 30px;
    min-height: 600px;
}

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

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

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

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .split-layout,
    .content-wrapper,
    .contact-layout,
    .asymmetric-layout,
    .testimonial-item {
        flex-direction: column;
    }

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

    .service-image {
        flex: 0 0 250px;
    }

    .grid-insights,
    .service-cards,
    .values-grid {
        flex-direction: column;
    }

    .insight-card,
    .service-card,
    .value-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}