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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.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: 20px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: white;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    min-width: 600px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand a {
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    padding: 18px 35px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.hero-visual-full {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 900px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
}

.hero-title-massive {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle-thin {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
}

.narrow-editorial {
    max-width: 700px;
    margin: 100px auto;
    padding: 0 30px;
}

.editorial-content {
    font-size: 19px;
    line-height: 1.8;
}

.editorial-content p {
    margin-bottom: 25px;
}

.lead-text {
    font-size: 22px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

.emphasis-text {
    font-size: 21px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 35px;
}

.insight-reveal {
    background: var(--bg-light);
    padding: 100px 40px;
    margin: 80px 0;
}

.insight-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-heading-bold {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.insight-item {
    flex: 1;
    min-width: 280px;
    font-size: 18px;
    line-height: 1.7;
}

.insight-conclusion {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    color: var(--secondary-color);
}

.story-continuation {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text-block {
    flex: 1;
    min-width: 320px;
}

.story-subhead {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-inline-image {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.trust-builder-testimonials {
    background: var(--primary-color);
    color: white;
    padding: 100px 40px;
    margin: 80px 0;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.8;
}

.approach-reveal {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.approach-content-asymmetric {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1.2;
    min-width: 320px;
}

.heading-reveal {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefit-list-spaced {
    list-style: none;
    padding: 0;
}

.benefit-list-spaced li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.benefit-list-spaced li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.approach-visual {
    flex: 1;
    min-width: 320px;
}

.approach-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.transformation-showcase {
    background: var(--bg-light);
    padding: 100px 40px;
    margin: 80px 0;
}

.center-heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.transformation-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.transform-item {
    flex: 1;
    min-width: 230px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.transform-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.transform-item p {
    font-size: 16px;
    line-height: 1.6;
}

.inline-cta-soft {
    text-align: center;
    padding: 80px 40px;
}

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

.cta-question {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.btn-primary-large {
    padding: 18px 50px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary-large:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.services-reveal {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-heading {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-description {
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.featured-service {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-size: 20px;
}

.service-pricing {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.urgency-element {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    padding: 40px;
    margin: 80px 0;
}

.urgency-container {
    text-align: center;
    color: white;
}

.urgency-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.urgency-subtext {
    font-size: 18px;
    font-weight: 300;
}

.final-push {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.final-heading {
    font-size: 42px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.final-description {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    color: var(--secondary-color);
}

.form-section {
    background: var(--bg-light);
    padding: 100px 40px;
    margin: 80px 0 0 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-heading {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-subheading {
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.contact-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: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    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: var(--secondary-color);
}

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

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

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
}

.page-hero-simple {
    text-align: center;
    padding: 150px 40px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.page-hero-simple h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-story,
.about-philosophy,
.about-instructor,
.about-values {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-content-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.philosophy-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.instructor-profile {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.instructor-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.instructor-bio {
    flex: 1;
    min-width: 300px;
}

.instructor-bio h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.values-container h2 {
    font-size: 36px;
    margin-bottom: 35px;
    text-align: center;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 20px 0 20px 35px;
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: bold;
}

.values-list li:last-child {
    border-bottom: none;
}

.cta-simple {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-light);
}

.cta-content-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content-centered p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.services-page-intro {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.services-intro-content {
    font-size: 18px;
    line-height: 1.8;
}

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

.services-detailed {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.featured-card {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-detail-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-tagline {
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.service-detail-body {
    font-size: 17px;
    line-height: 1.8;
}

.service-detail-body h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.service-detail-body ul {
    margin: 15px 0 25px 25px;
}

.service-detail-body li {
    margin-bottom: 10px;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 30px 0 20px;
}

.btn-enroll {
    display: inline-block;
    padding: 14px 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.services-faq {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.faq-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-info-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-detail {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
}

.contact-additional {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-content-narrow h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-content-narrow h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: var(--primary-color);
}

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px 100px;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thanks-lead {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.thanks-details {
    font-size: 18px;
    margin-bottom: 50px;
}

.selected-service-display {
    font-size: 20px;
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-next-steps {
    text-align: left;
    margin: 50px auto;
    max-width: 600px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps-list {
    padding-left: 0;
    counter-reset: step-counter;
}

.next-steps-list li {
    list-style: none;
    counter-increment: step-counter;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.next-steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.next-steps-list strong {
    display: block;
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.next-steps-list p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.thanks-contact {
    margin: 40px 0;
    font-size: 17px;
}

.thanks-cta {
    margin-top: 50px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.legal-page {
    padding: 150px 40px 80px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 30px;
    margin: 50px 0 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 15px 0 25px 30px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 15px;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        padding: 12px 20px;
        gap: 20px;
        min-width: auto;
        max-width: 90%;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-title-massive {
        font-size: 36px;
    }

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

    .section-heading-bold,
    .services-heading {
        font-size: 32px;
    }

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

    .story-continuation {
        flex-direction: column;
    }

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

    .approach-content-asymmetric {
        flex-direction: column;
    }

    .transformation-blocks {
        flex-direction: column;
    }

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

    .service-card {
        max-width: 100%;
    }

    .form-container {
        padding: 30px 25px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 14px 25px;
        font-size: 14px;
    }

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

    .philosophy-points {
        flex-direction: column;
    }

    .instructor-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .thanks-container h1 {
        font-size: 40px;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title-massive {
        font-size: 28px;
    }

    .nav-brand {
        font-size: 16px;
    }

    .section-heading-bold {
        font-size: 26px;
    }
}
