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

html {
    font-size: 16px;
    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;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    text-align: center;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

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

.nav-cta {
    background: #e74c3c;
    color: #ffffff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

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

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

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    background: #f8f9fa;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

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

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

.btn-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-secondary:hover {
    background: #e74c3c;
    color: #ffffff;
}

.btn-primary-large {
    background: #e74c3c;
    color: #ffffff;
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

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

/* Insight Section */
.insight-section {
    padding: 6rem 0;
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.insight-visual {
    flex: 0 0 45%;
    padding: 2rem;
}

.insight-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.insight-content {
    flex: 1;
    padding: 3rem 4rem;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

/* Problem Section */
.problem-amplify {
    background: #f8f9fa;
    padding: 6rem 0;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.problem-amplify h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.problem-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

.story-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.story-text {
    flex: 1;
    padding: 3rem 4rem;
}

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

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-visual {
    flex: 0 0 48%;
    padding: 2rem;
}

.story-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Services Section */
.services-reveal {
    background: #f8f9fa;
    padding: 6rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-split {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.service-visual {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

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

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 0;
}

.btn-select-service {
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.service-card-split.premium {
    border: 3px solid #e74c3c;
}

/* Testimonials */
.testimonials-flow {
    padding: 6rem 0;
}

.testimonials-flow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #555;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits-split {
    background: #f8f9fa;
    padding: 6rem 0;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.benefits-content {
    flex: 1;
    padding: 3rem 4rem;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    color: #e74c3c;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.benefits-visual {
    flex: 0 0 45%;
    padding: 2rem;
}

.benefits-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Form Section */
.form-split-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
}

.form-intro {
    flex: 1;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.urgency-text {
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.form-wrapper {
    flex: 1;
}

.enrollment-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2c3e50;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.btn-submit {
    width: 100%;
    background: #e74c3c;
    color: #ffffff;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

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

/* CTA Sections */
.cta-sticky-trigger,
.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 0;
    text-align: center;
    background: #2c3e50;
    color: #ffffff;
}

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

.cta-sticky-trigger p,
.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta a {
    display: block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #e74c3c;
}

.footer-brand p {
    color: #bdc3c7;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.7rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bdc3c7;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: center;
    background: #f8f9fa;
}

.hero-content-page {
    flex: 1;
    padding: 4rem;
}

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

.hero-content-page p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.hero-visual-page {
    flex: 1;
    min-height: 50vh;
    overflow: hidden;
}

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

/* Mission Section */
.mission-split {
    padding: 6rem 0;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.mission-visual {
    flex: 0 0 45%;
    padding: 2rem;
}

.mission-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.mission-content {
    flex: 1;
    padding: 3rem 4rem;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Team Section */
.team-split {
    padding: 6rem 0;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.team-member-split {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.team-member-split.reverse {
    flex-direction: row-reverse;
}

.member-visual {
    flex: 0 0 40%;
}

.member-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.member-info {
    flex: 1;
}

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

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

.member-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Journey Section */
.journey-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.journey-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.journey-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Approach Section */
.approach-split {
    padding: 6rem 0;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.approach-content {
    flex: 1;
    padding: 3rem 4rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.approach-visual {
    flex: 0 0 45%;
    padding: 2rem;
}

.approach-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Services Detail Page */
.services-intro-split {
    padding: 6rem 0;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.intro-content {
    flex: 1;
    padding: 3rem 4rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.intro-visual {
    flex: 0 0 45%;
    padding: 2rem;
}

.intro-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.services-detailed {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-detailed h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.service-detail-split {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

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

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-content h4 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.program-list {
    margin: 1rem 0;
}

.program-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

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

.service-price-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1.1rem;
    color: #555;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.service-price-block.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
}

.service-price-block.premium .price-label,
.service-price-block.premium .price-value,
.service-price-block.premium .price-note {
    color: #ffffff;
}

.price-note {
    font-size: 0.95rem;
    font-style: italic;
}

.premium-service {
    border: 3px solid #e74c3c;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
}

.comparison-note {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-note p {
    font-size: 1.15rem;
    color: #555;
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table td {
    color: #555;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

/* FAQ Section */
.faq-split,
.faq-contact {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-split h2,
.faq-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Page */
.contact-split {
    padding: 6rem 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #e74c3c;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-item a {
    color: #e74c3c;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.map-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

/* Visit Section */
.visit-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.visit-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.visit-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.visit-section a {
    color: #e74c3c;
    font-weight: 600;
}

.visit-section a:hover {
    text-decoration: underline;
}

/* Studio Section */
.studio-split {
    padding: 6rem 0;
}

.studio-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.studio-visual {
    flex: 0 0 45%;
    padding: 2rem;
}

.studio-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.studio-content {
    flex: 1;
    padding: 3rem 4rem;
}

.studio-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.studio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-info {
    text-align: left;
    margin: 3rem 0;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.next-step {
    margin-bottom: 2rem;
}

.next-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #e74c3c;
}

.next-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-selected {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-selected h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-selected {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
}

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

.thanks-additional {
    text-align: left;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

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

.thanks-additional p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-additional ul {
    list-style: disc;
    padding-left: 2rem;
}

.thanks-additional li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.7rem;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

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

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.7rem;
}

.legal-page a {
    color: #e74c3c;
    font-weight: 600;
}

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

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .insight-container,
    .story-split,
    .benefits-container,
    .mission-container,
    .approach-container,
    .intro-container,
    .studio-container {
        flex-direction: column;
    }

    .hero-visual,
    .insight-visual,
    .story-visual,
    .benefits-visual,
    .mission-visual,
    .approach-visual,
    .intro-visual,
    .studio-visual {
        flex: 1;
        min-height: 400px;
    }

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

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

    .service-visual {
        flex: 1;
        min-height: 300px;
    }

    .form-container-split,
    .contact-container {
        flex-direction: column;
    }

    .team-member-split,
    .team-member-split.reverse {
        flex-direction: column;
    }

    .member-visual {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-cta {
        padding: 0.6rem 1.2rem;
    }

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

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

    .hero-content,
    .insight-content,
    .story-text,
    .benefits-content,
    .mission-content,
    .approach-content,
    .intro-content,
    .studio-content,
    .service-details {
        padding: 2rem;
    }

    .problem-card,
    .value-card {
        flex: 1 1 100%;
    }

    .services-split-layout {
        gap: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

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

    .sticky-cta a {
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
    }
}

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

    .nav-links {
        display: none;
    }

    .btn-primary,
    .btn-secondary,
    .btn-primary-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}