/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Navigation - Split Layout */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-right a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--secondary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    padding: 3rem 5%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-right {
    margin-top: 2rem;
}

.hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    background: var(--secondary-color);
    color: white;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.btn-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
}

/* Alternating Split Sections */
.intro-alternating,
.story-split,
.benefits-split,
.method-split,
.instructors-split,
.faq-split,
.contact-split,
.team-split,
.approach-split,
.services-intro-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
    gap: 3rem;
}

.intro-content,
.story-text,
.benefits-list,
.method-text,
.instructors-intro,
.contact-info,
.team-text,
.approach-text,
.services-intro-text {
    flex: 1;
}

.intro-content h2,
.story-text h2,
.benefits-list h2,
.method-text h2,
.instructors-intro h2,
.contact-info h2,
.team-text h2,
.approach-text h2,
.services-intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content p,
.story-text p,
.instructors-intro p,
.contact-info p,
.team-text p,
.approach-text p,
.services-intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-image,
.story-image,
.benefits-visual,
.method-visual,
.instructors-visual,
.contact-visual,
.team-image,
.approach-image,
.services-intro-image {
    flex: 1;
    position: relative;
}

.intro-image img,
.story-image img,
.benefits-visual img,
.method-visual img,
.instructors-visual img,
.contact-visual img,
.team-image img,
.approach-image img,
.services-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.visual-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(231, 76, 60, 0.95);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Benefit Cards */
.benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Method Steps */
.method-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonial-wide {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5%;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-role {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Services Preview */
.services-preview {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-select,
.btn-select-small {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.services-extra {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.extra-service {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.extra-service h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.extra-service p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.extra-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* CTA Sections */
.cta-fullwidth,
.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: white;
    text-align: center;
}

.cta-content h2,
.cta-fullwidth h2,
.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p,
.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Form Section */
.form-section {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-left p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.form-right {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* FAQ Section */
.faq-split {
    background: white;
}

.faq-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a:hover {
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #45a049;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 5rem 5%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 4rem 5%;
    background: white;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Section */
.stats-wide {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.stats-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-large {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.featured-service {
    border: 3px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
}

.service-detail-header {
    padding: 2.5rem;
    background: var(--bg-light);
}

.service-detail-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-level {
    color: var(--text-light);
    font-size: 1rem;
}

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

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes h4,
.service-topics h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-topics p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-detail-footer {
    padding: 2.5rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service-pricing {
    text-align: center;
}

.price-label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-select-service {
    background: var(--accent-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Additional Services */
.additional-services {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.additional-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.additional-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.additional-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.additional-ideal {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.additional-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.additional-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.additional-duration {
    font-size: 0.95rem;
    color: var(--text-light);
}

.additional-save {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
}

/* Comparison Table */
.comparison-table {
    padding: 4rem 5%;
    background: white;
}

.comparison-table h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.table-container {
    overflow-x: auto;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.services-table thead {
    background: var(--primary-color);
    color: white;
}

.services-table th,
.services-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.services-table tbody tr:hover {
    background: var(--bg-light);
}

.services-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
}

.cookies-table thead {
    background: var(--primary-color);
    color: white;
}

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

.cookies-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.guarantee-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.faq-contact h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Info Blocks */
.info-blocks {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--accent-color);
    font-weight: 600;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Next Steps */
.next-steps {
    padding: 4rem 5%;
}

.next-steps h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    padding-left: 4.5rem;
}

.step-num {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Thanks Service Info */
.thanks-service-info {
    padding: 3rem 5%;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.thanks-service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.thanks-service-info p {
    opacity: 0.9;
}

/* Prepare Section */
.prepare-section {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.prepare-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.prepare-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.prepare-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.prepare-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.prepare-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Resources Section */
.resources-section {
    padding: 4rem 5%;
}

.resources-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Social Proof */
.social-proof {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.social-proof h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-mini {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-mini {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-mini p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-mini span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Final CTA */
.final-cta {
    padding: 4rem 5%;
    text-align: center;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-home {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

/* Legal Content */
.legal-hero {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5%;
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-hero-content p {
    opacity: 0.9;
}

.legal-content {
    padding: 4rem 5%;
    background: white;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-container h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-cta {
    padding: 3rem 5%;
    text-align: center;
    background: var(--bg-light);
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .hero-split,
    .intro-alternating,
    .story-split,
    .benefits-split,
    .method-split,
    .instructors-split,
    .faq-split,
    .contact-split,
    .team-split,
    .approach-split,
    .services-intro-split {
        flex-direction: row;
        align-items: center;
    }

    .hero-split {
        min-height: 85vh;
    }

    .hero-left,
    .hero-right,
    .intro-content,
    .intro-image,
    .story-text,
    .story-image,
    .benefits-list,
    .benefits-visual,
    .method-text,
    .method-visual,
    .instructors-intro,
    .instructors-visual,
    .faq-intro,
    .faq-list,
    .contact-info,
    .contact-visual,
    .team-text,
    .team-image,
    .approach-text,
    .approach-image,
    .services-intro-text,
    .services-intro-image {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-extra {
        flex-direction: row;
    }

    .extra-service {
        flex: 1;
    }

    .form-container {
        flex-direction: row;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-container {
        flex-direction: row;
    }

    .stat-box {
        flex: 1;
    }

    .additional-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .additional-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .info-blocks {
        flex-direction: row;
    }

    .info-block {
        flex: 1;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .resources-grid {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

    .testimonials-mini {
        flex-direction: row;
    }

    .testimonial-mini {
        flex: 1;
    }

    .prepare-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .prepare-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-detail-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero-left h1 {
        font-size: 3.5rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .additional-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .prepare-item {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

/* Mobile Menu Toggle (for future implementation) */
@media (max-width: 767px) {
    .nav-right {
        display: none;
    }

    .nav-right.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
}
