:root {
    --primary-color: #3B82F6;
    /* Energetic Blue */
    --secondary-color: #10B981;
    /* Green for growth/learning */
    --accent-color: #F59E0B;
    /* Orange for creativity/fun */
    --text-color: #1F2937;
    --bg-color: #F3F4F6;
    --card-bg: #FFFFFF;
    --font-main: 'Noto Sans JP', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

.nav-links a {
    font-weight: bold;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

/* Hero Section (Sub Page) */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* Common Components */
.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease;
}

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

/* Footer */
footer {
    background-color: #1F2937;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

/* Pricing Section (Shared) */
.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header p.fee-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
}

.pricing-header p.fee-note {
    color: #6B7280;
    font-size: 0.9rem;
}

.pricing-box h3 {
    color: var(--primary-color);
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list span.price {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: bold;
}

.pricing-list span.tax {
    font-size: 0.9rem;
    color: #6B7280;
    margin-left: 5px;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid #9CA3AF;
}

.btn-outline:hover {
    background-color: #9CA3AF;
    color: white;
}

/* --- Top Page Revamp Styles --- */

/* Hero */
.entry-hero {
    position: relative;
    padding: 120px 20px 100px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    /* Removed image as requested for cleaner look */
    text-align: center;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    background: #E11D48;
    color: white;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.2);
    animation: fadeInDown 1s ease;
    border: 2px solid white;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.3;
    color: #1F2937;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--primary-color);
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4B5563;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-target {
    font-size: 1rem;
    color: #6B7280;
    background: #F3F4F6;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
    font-weight: normal;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.hero-note {
    font-size: 0.9rem;
    color: #6B7280;
    margin-top: 5px;
}

.shadow-pulse {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

/* Sections Common */
.section-empathy,
.section-reasons,
.section-target,
.section-growth,
.section-campaign-trial {
    padding: 100px 20px;
}

/* Empathy */
.section-empathy {
    background: white;
    text-align: center;
}

.worries-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.worry-card {
    background: #F9FAFB;
    padding: 40px 30px;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    border: 1px solid #F3F4F6;
}

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

.worry-img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.worry-card p {
    font-weight: bold;
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.6;
}

.empathy-message {
    margin-top: 60px;
    font-size: 1.4rem;
    color: var(--primary-color);
    line-height: 1.8;
}

/* Reasons */
.section-reasons {
    background: #F0F9FF;
    /* Very light blue */
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.reason-card {
    background: white;
    padding: 50px 30px 40px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reason-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.08);
    position: absolute;
    top: 10px;
    right: 30px;
    line-height: 1;
    font-family: sans-serif;
}

.reason-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.reason-card p {
    color: #4B5563;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Target */
.section-target {
    background: white;
    text-align: center;
}

.target-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 50px auto 0;
}

.target-item {
    background: #FFF7ED;
    /* Light Orange */
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    color: #D97706;
    /* Darker Orange */
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.1);
}

.check-icon {
    font-size: 1.2rem;
}

.target-message {
    margin-top: 60px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #4B5563;
    line-height: 1.8;
}

/* Growth */
.section-growth {
    background: linear-gradient(to bottom, #F8FAFC, #FFFFFF);
}

.growth-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px auto;
}

.growth-box {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    border: 2px solid #E5E7EB;
    text-align: center;
    min-width: 160px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.growth-box.highlight {
    background: #1F2937;
    color: white;
    border-color: #1F2937;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.growth-box h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.growth-box p {
    font-size: 0.95rem;
    font-weight: bold;
}

.growth-box .small {
    font-size: 0.8rem;
    font-weight: normal;
    display: block;
    margin-top: 5px;
    opacity: 0.8;
}

.arrow {
    font-size: 1.5rem;
    color: #9CA3AF;
}

.growth-future {
    background: white;
    max-width: 700px;
    margin: 50px auto 0;
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed #CBD5E1;
    text-align: left;
}

.growth-future h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.growth-future ul {
    list-style: none;
    padding: 0;
}

.growth-future li {
    font-size: 1.15rem;
    margin-bottom: 15px;
    padding-left: 20px;
    text-indent: -1.2em;
    color: #4B5563;
}

/* Campaign & Trial */
.section-campaign-trial {
    background: #FFF1F2;
    /* Very light pink/rose */
    text-align: center;
    padding-bottom: 120px;
}

.campaign-box {
    background: white;
    max-width: 800px;
    margin: 0 auto 80px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(225, 29, 72, 0.15);
    border: 3px solid #E11D48;
}

.campaign-label {
    background: #E11D48;
    color: white;
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.campaign-content {
    padding: 50px 30px;
}

.campaign-main-text {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.campaign-price {
    font-size: 2.5rem;
    color: #E11D48;
    font-weight: 900;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
}

.campaign-price .zero {
    font-size: 5rem;
    background: linear-gradient(135deg, #E11D48, #FB7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.campaign-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 20px;
}

.trial-info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.trial-title {
    font-size: 2.2rem;
    color: #1F2937;
    margin-bottom: 50px;
}

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

.trial-feature {
    background: white;
    flex: 1;
    min-width: 320px;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--primary-color);
}

.trial-feature:last-child {
    border-top-color: var(--secondary-color);
}

.trial-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 15px;
    color: #1F2937;
}

.trial-feature ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #4B5563;
    font-size: 1.05rem;
}

.trial-feature ul li::before {
    content: '✔';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.final-cta {
    background: white;
    display: inline-block;
    padding: 60px 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cta-lead {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #1F2937;
}

.btn-cta-final {
    font-size: 1.6rem;
    padding: 22px 70px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.sub-link-wrapper {
    margin-top: 20px;
}

.sub-link {
    color: #6B7280;
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.3s;
}

.sub-link:hover {
    color: var(--primary-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .section-empathy,
    .section-reasons,
    .section-target,
    .section-growth,
    .section-campaign-trial {
        padding: 60px 20px;
    }

    .entry-hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .reason-number {
        font-size: 4rem;
        position: static;
        margin-bottom: 10px;
        display: block;
        text-align: left;
    }

    .growth-diagram {
        flex-direction: column;
        gap: 15px;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .campaign-price {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .campaign-price .zero {
        font-size: 4rem;
        line-height: 1;
    }

    .btn-cta-final {
        width: 100%;
        padding: 15px;
        font-size: 1.3rem;
    }
}

/* --- Trial Page Specific Styles --- */

.trial-hero-new {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    /* Reusing existing background */
    background-position: center;
}

.trial-hero-new h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.4;
}

.trial-hero-new .sub-copy {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    font-weight: bold;
    line-height: 1.8;
}

.trial-atmosphere-img {
    text-align: center;
    margin-bottom: 40px;
}

.trial-atmosphere-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.section-trial {
    padding: 80px 20px;
}

.bg-gray {
    background-color: #F8FAFC;
}

.bg-highlight {
    background-color: #FFF9F9;
}

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

.feature-list-trial {
    text-align: left;
    display: inline-block;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list-trial li {
    margin-bottom: 15px;
}

.feature-list-trial .icon {
    margin-right: 10px;
}

.message-box {
    font-weight: bold;
    color: var(--primary-color);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.timeline-flow {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

/* Vertical Line for timeline */
.timeline-flow::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ddd;
}

.flow-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    padding-left: 60px;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: #333;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
}

.time-note {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.two-col-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.col-text,
.col-img {
    flex: 1;
    min-width: 300px;
}

.check-list-styled li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-weight: bold;
    color: #444;
}

.check-list-styled li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.parents-message-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #ffdde5;
    /* Soft pink border for gentleness */
    text-align: center;
}

.parents-message-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.parents-message-box p {
    font-size: 1.1rem;
    line-height: 2;
}

.highlight-text {
    font-weight: bold;
    color: #E11D48;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 30px auto 0;
}

.faq-item {
    background: #F9FAFB;
    padding: 25px;
    border-radius: 10px;
}

.question {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.answer {
    font-size: 0.95rem;
    color: #333;
}

.notes-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed #CBD5E1;
    text-align: left;
}

.notes-box ul {
    display: inline-block;
    margin: 0 auto;
}

.notes-box li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .two-col-layout {
        flex-direction: column;
    }

    .col-img {
        order: -1;
    }

    .parents-message-box {
        padding: 30px 20px;
    }
}

/* --- School Details Page Refinement --- */

/* Curriculum Steps Grid */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1F2937;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 10px;
}

.step-card p {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* Feature Layout (Text + Image) */
.feature-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-content {
    flex: 1.2;
}

.feature-content h3 {
    font-size: 1.8rem;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .feature-layout {
        flex-direction: column-reverse !important;
        gap: 30px;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }
}

/* Q&A Section */
.qa-box {
    background: #F9FAFB;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #E5E7EB;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.qa-box:hover {
    background: #F0F9FF;
}

.qa-question {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.qa-answer {
    color: #374151;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 30px;
}

/* Info/Access Content */
.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-details {
    text-align: left;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.info-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 20px;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-value {
    color: #4B5563;
    font-size: 1.05rem;
}

/* Target Grid (Why Choose Us) - Fix for layout */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}