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

:root {
    /* Colors */
    --primary-navy: #1a2942;
    --secondary-navy: #2c3e50;
    --accent-gold: #c9a961;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-beige: #f5f3f0;
    
    /* Typography */
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ===== Scroll Margin for Fixed Header ===== */
section[id] {
    scroll-margin-top: 80px;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
    display: block;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link.cta-button {
    background: var(--primary-navy);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 41, 66, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-location {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    margin: 0 auto;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ===== Animations ===== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

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

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Section Styles ===== */
.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 60px;
    line-height: 1.4;
}

.section-title.center {
    text-align: center;
}

/* ===== Problem Section ===== */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.problem-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-navy);
    line-height: 1.5;
}

.problem-card p {
    color: var(--text-light);
    font-size: 15px;
}

.problem-conclusion {
    text-align: center;
    margin-top: 60px;
}

.conclusion-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.conclusion-highlight {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* ===== Solution Section ===== */
.solution-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: white;
    text-align: center;
}

.solution-section .section-title {
    color: white;
}

.solution-lead {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--accent-gold);
}

.solution-description {
    font-size: 18px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* ===== Why Islands Section ===== */
.why-islands-section {
    padding: var(--section-padding) 0;
    background: var(--bg-beige);
}

.islands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.island-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.island-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.island-image.kudaka {
    background-image: url('https://sspark.genspark.ai/cfimages?u1=ws5gjJ%2FEbHVq2pfZzPKFYSZAGlvX66Nw2CnnzuB1HbzOZy8VjvXbqt2z5xrPsa4fTf932U5p5dYlkh92sVqyjMDI2SPDbVEfkIQRHqMGFAAxAHP7mJDfk0r5&u2=ae6EiurzZc89IPAq&width=2560');
}

.island-image.okishima {
    background-image: url('https://sspark.genspark.ai/cfimages?u1=rHy9p5EOL%2B0BORhEMne2TStGSJYtkdo4eo3b2a%2BDvGUxhkIhvG9SEMi8VFKwJtxLT4H906pLKCoVnHcp%2FOJRLTMCrMmftGfitn4N&u2=mOg8aGkI3W5DafjY&width=2560');
}

.island-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    padding: 30px 30px 15px;
    color: var(--primary-navy);
}

.island-card p {
    padding: 0 30px 30px;
    color: var(--text-light);
    font-size: 15px;
}

.why-description {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-navy);
}

/* ===== Science Section ===== */
.science-section {
    padding: var(--section-padding) 0;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.science-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.science-section .container {
    position: relative;
    z-index: 2;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.science-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.science-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.science-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.science-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.theory {
    font-size: 13px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.science-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* ===== Dialogues Section ===== */
.dialogues-section {
    padding: var(--section-padding) 0;
    background-image: url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.dialogues-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 243, 240, 0.95);
    z-index: 1;
}

.dialogues-section .container {
    position: relative;
    z-index: 2;
}

.dialogues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.dialogue-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.dialogue-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dialogue-number {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.dialogue-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.dialogue-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ===== Program Section ===== */
.program-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.program-subtitle {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 60px;
}

.program-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.timeline-item {
    flex: 1;
    max-width: 300px;
}

.timeline-day {
    background: var(--accent-gold);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
}

.timeline-content {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    min-height: 350px;
    position: relative;
}

.timeline-item:nth-child(1) .timeline-content {
    background-image: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1495954484750-af469f2f9be5?q=80&w=1000');
    background-size: cover;
    background-position: center;
}

.timeline-item:nth-child(3) .timeline-content {
    background-image: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1502134249126-9f3755a50d78?q=80&w=1000');
    background-size: cover;
    background-position: center;
}

.timeline-item:nth-child(5) .timeline-content {
    background-image: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=1000');
    background-size: cover;
    background-position: center;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 20px;
    text-align: center;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.timeline-content li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.timeline-arrow {
    align-self: center;
    font-size: 32px;
    color: var(--accent-gold);
    margin: 0 -10px;
}

.program-followup {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-beige);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.followup-icon {
    font-size: 48px;
    color: var(--accent-gold);
    font-weight: 300;
}

.followup-content h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.followup-content p {
    font-size: 15px;
    color: var(--text-light);
}

/* ===== Results Section ===== */
.results-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.result-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.result-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.result-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* ===== Data Section ===== */
.data-section {
    padding: var(--section-padding) 0;
    background-image: linear-gradient(135deg, rgba(26, 41, 66, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
}

.data-section .section-title {
    color: white;
}

.data-content {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 40px;
}

.data-stat {
    text-align: center;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 20px;
}

.stat-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.data-stat p {
    font-size: 16px;
    opacity: 0.9;
}

.data-source {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.data-conclusion p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}

/* ===== Testimonial Section ===== */
.testimonial-section {
    padding: var(--section-padding) 0;
    background: var(--bg-beige);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto 60px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 18px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    font-size: 16px;
    color: var(--text-light);
}

.testimonial-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-result {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
}

.testimonial-result h4 {
    font-size: 16px;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.testimonial-result p {
    font-size: 15px;
    color: var(--text-light);
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    background: var(--accent-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--primary-navy);
    margin-bottom: 30px;
}

.pricing-amount {
    margin-bottom: 40px;
}

.currency {
    font-size: 24px;
    vertical-align: top;
}

.price {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-navy);
}

.tax {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.pricing-note {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
}

.options-section {
    max-width: 1000px;
    margin: 0 auto;
}

.options-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.option-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.option-card h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.option-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.option-duration {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.option-card ul {
    list-style: none;
}

.option-card li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-light);
}

.option-card li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 41, 66, 0.85);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 48px;
    margin-bottom: 30px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.cta-form-button {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.cta-form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
    background: #d4b76d;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 48px;
}

.contact-info {
    text-align: left;
}

.contact-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: white;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 13px;
    opacity: 0.7;
}

.footer-info p,
.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .problem-grid,
    .islands-grid,
    .dialogues-grid,
    .results-grid,
    .testimonial-results {
        grid-template-columns: 1fr;
    }
    
    .science-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .program-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .data-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-location {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 40px;
    }
}