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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem;
}

.hero-content {
    max-width: 600px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: #e74c3c;
    color: #ffffff;
}

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

.cta-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.cta-large {
    background: #27ae60;
    color: #ffffff;
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
}

.cta-large:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.4);
}

/* Trust Split Section */
.trust-split {
    display: flex;
    align-items: stretch;
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.split-visual,
.split-text {
    flex: 1;
}

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

.split-text {
    padding: 5rem 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

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

/* Method Section */
.method-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.method-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.method-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.method-header p {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.method-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

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

.services-intro-left,
.services-intro-right {
    flex: 1;
}

.services-intro-left h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.services-intro-left p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

.services-intro-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #e74c3c;
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: #ffffff;
    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: #2c3e50;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

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

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

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: stretch;
}

.testimonial-visual,
.testimonial-content {
    flex: 1;
}

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

.testimonial-content {
    padding: 5rem 4rem;
    background: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

blockquote {
    border-left: 4px solid #e74c3c;
    padding-left: 2rem;
}

blockquote p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

blockquote footer {
    font-size: 1rem;
    color: #95a5a6;
    font-style: normal;
}

/* Urgency Strip */
.urgency-strip {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 3rem 2rem;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.urgency-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Instructor Split */
.instructor-split {
    display: flex;
    align-items: stretch;
}

.instructor-split.reverse {
    flex-direction: row-reverse;
}

.text-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e74c3c;
}

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

/* Booking Section */
.booking-section {
    padding: 6rem 2rem;
    background: #2c3e50;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.booking-left {
    color: #ffffff;
}

.booking-left h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.booking-left p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.booking-benefits li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.booking-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.booking-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.2rem;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #c0392b;
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    align-items: center;
    min-height: 50vh;
}

.final-left,
.final-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.final-left {
    background: #ecf0f1;
}

.final-left h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.final-left p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #7f8c8d;
    max-width: 500px;
}

.final-right {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Footer */
.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    color: #95a5a6;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a:hover {
    color: #e74c3c;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    overflow: hidden;
}

.sticky-cta a {
    display: block;
    padding: 1.2rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    transition: background 0.3s ease;
}

.sticky-cta a:hover {
    background: #c0392b;
}

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

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}

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

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

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

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Story Split */
.story-split {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

.story-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.story-right img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7f8c8d;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.team-member {
    flex: 1 1 calc(50% - 3rem);
    min-width: 280px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #7f8c8d;
}

/* Stats Split */
.stats-split {
    display: flex;
    align-items: center;
    background: #ecf0f1;
    padding: 5rem 2rem;
}

.stats-left,
.stats-right {
    flex: 1;
    padding: 2rem;
}

.stats-left h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.stats-left p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #7f8c8d;
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e74c3c;
}

.stat-label {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.philosophy-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.philosophy-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #34495e;
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-about-content {
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Services Detail */
.services-detail {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 4rem;
}

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

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

.detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-right {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.detail-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.badge-large {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-large.premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

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

/* Pricing Info */
.pricing-info {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

.pricing-info-content h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.included-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
}

.included-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.included-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #7f8c8d;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7f8c8d;
}

/* CTA Services */
.cta-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

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

.cta-services-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-services-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Contact Split */
.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7f8c8d;
}

.contact-note {
    font-size: 0.95rem;
    color: #95a5a6;
    margin-top: 0.5rem;
}

.contact-right img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.contact-cta-content {
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Location Section */
.location-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.location-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.location-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

/* Thanks Page */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #27ae60;
    color: #ffffff;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-confirmation {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 2rem;
    text-align: left;
}

.thanks-steps li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.thanks-contact {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.thanks-contact a {
    color: #ffffff;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-updated {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ecf0f1;
}

.cookies-table th {
    background: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.cookies-table td {
    background: #ffffff;
    color: #34495e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .trust-split,
    .testimonial-split,
    .instructor-split,
    .final-cta-split,
    .stats-split,
    .story-split,
    .contact-split {
        flex-direction: column;
    }

    .trust-split.reverse,
    .instructor-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .booking-container,
    .services-intro-split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .method-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .service-card,
    .value-card,
    .team-member,
    .included-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .split-text,
    .detail-right {
        padding: 3rem 2rem;
    }
}

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

    .hero-intro {
        font-size: 1.1rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .thanks-content {
        padding: 2rem 1.5rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}