:root {
    /* カラーテーマ：濃紺×ゴールド */
    --primary-color: #0d1b3e;
    --secondary-color: #1a2f5a;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d677;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    
    /* Phase Colors */
    --phase-1: #6366f1;
    --phase-2: #8b5cf6;
    --phase-3: #ec4899;
    --phase-4: #f59e0b;
    --phase-5: #10b981;
    --phase-6: #06b6d4;
    
    /* Typography */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Noto Serif JP', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(212,175,55,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-main {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description strong {
    color: var(--accent-gold-light);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 50px;
    font-size: 20px;
}

/* ==================== Section Common Styles ==================== */
section {
    padding: var(--section-padding);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ==================== Problem Section ==================== */
.problem {
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-gold);
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==================== Solution Section ==================== */
.solution {
    background: var(--bg-white);
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solution-intro {
    text-align: center;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.solution-intro .highlight {
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 900;
}

.solution-pillars {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.pillar {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-gold);
}

.pillar h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pillar-list {
    list-style: none;
}

.pillar-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-list .badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-gold);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.pillar-list i {
    color: var(--accent-gold);
    font-size: 18px;
}

.pillar-divider {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-gold);
}

/* ==================== Authority Section ==================== */
.authority {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

.authority .section-title {
    color: var(--text-light);
}

.authority .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.authority-content {
    max-width: 900px;
    margin: 0 auto;
}

.authority-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.profile-image {
    flex-shrink: 0;
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(212, 175, 55, 0.2);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--accent-gold);
}

.profile-info {
    flex-grow: 1;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--accent-gold-light);
}

.profile-title {
    font-size: 18px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.profile-subtitle {
    font-size: 16px;
    opacity: 0.8;
}

.authority-main {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;
    text-align: center;
}

.authority-achievements {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.achievement-item i {
    font-size: 36px;
    color: var(--accent-gold);
}

.achievement-item span {
    font-size: 14px;
    font-weight: 700;
}

.authority-quote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 30px;
    font-size: 18px;
    font-style: italic;
    line-height: 2;
    border-radius: 10px;
}

/* ==================== Roadmap Section ==================== */
.roadmap {
    background: var(--bg-light);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--phase-1), var(--phase-2), var(--phase-3), var(--phase-4), var(--phase-5), var(--phase-6));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1 / 2;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2 / 3;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3 / 4;
}

.timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2 / 3;
}

.timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.phase-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: var(--text-light);
    border: 4px solid var(--bg-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.phase-1 .phase-number { background: var(--phase-1); }
.phase-2 .phase-number { background: var(--phase-2); }
.phase-3 .phase-number { background: var(--phase-3); }
.phase-4 .phase-number { background: var(--phase-4); }
.phase-5 .phase-number { background: var(--phase-5); }
.phase-6 .phase-number { background: var(--phase-6); }

.timeline-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.phase-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
}

.phase-revenue {
    font-size: 18px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
}

.phase-1 .phase-revenue { background: rgba(99, 102, 241, 0.1); color: var(--phase-1); }
.phase-2 .phase-revenue { background: rgba(139, 92, 246, 0.1); color: var(--phase-2); }
.phase-3 .phase-revenue { background: rgba(236, 72, 153, 0.1); color: var(--phase-3); }
.phase-4 .phase-revenue { background: rgba(245, 158, 11, 0.1); color: var(--phase-4); }
.phase-5 .phase-revenue { background: rgba(16, 185, 129, 0.1); color: var(--phase-5); }
.phase-6 .phase-revenue { background: rgba(6, 182, 212, 0.1); color: var(--phase-6); }

.phase-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-body p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.phase-body p strong {
    color: var(--accent-gold);
    font-weight: 700;
}

/* ==================== Benefits Section ==================== */
.benefits {
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    position: relative;
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    font-family: var(--font-heading);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-gold);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==================== Curriculum Section ==================== */
.curriculum {
    background: var(--bg-light);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.curriculum-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 25px 30px;
    color: var(--text-light);
}

.lecture-number {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-gold);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.curriculum-header h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.curriculum-body {
    padding: 30px;
}

.curriculum-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.curriculum-body h4:first-child {
    margin-top: 0;
}

.curriculum-body p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ==================== CTA Section ==================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 100px 0;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-description {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-description strong {
    color: var(--accent-gold-light);
    font-size: 24px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
}

.cta-feature i {
    color: var(--accent-gold);
    font-size: 20px;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

/* ==================== Contact Form Section ==================== */
.contact-form {
    background: var(--bg-white);
}

.form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.required {
    color: #e53e3e;
    font-size: 14px;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--accent-gold-light);
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* ==================== Animations ==================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== Responsive Design ==================== */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .sp-only {
        display: inline;
    }
    
    .hero-main {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large,
    .btn-xl {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-pillars {
        grid-template-columns: 1fr;
    }
    
    .pillar-divider {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .authority-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .authority-achievements {
        gap: 20px;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .timeline-item:nth-child(even) .timeline-marker,
    .timeline-item:nth-child(odd) .timeline-marker {
        grid-column: 1 / 2;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 2 / 3;
    }
    
    .timeline-marker {
        justify-content: flex-start;
    }
    
    .phase-number {
        width: 70px;
        height: 70px;
        font-size: 14px;
    }
    
    .phase-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .phase-title {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 18px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-main {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .solution-intro {
        font-size: 16px;
    }
    
    .solution-intro .highlight {
        font-size: 20px;
    }
}
