@charset "utf-8";

/* Design System Variables */
:root {
    --primary-color: #064e3b;
    /* Royal Green */
    --secondary-color: #f3bd0c;
    /* Metallic Gold */
    --text-color: #475569;
    /* Softer Gray-Blue */
    --light-gray: #F5F7F6;
    /* Cool Gray */
    --border-color: #E0E0E0;
    --white: #FFFFFF;

    /* Font: Pretendard for everything as requested */
    --font-heading: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;

    --content-width: 1440px;
    --header-height: 90px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: var(--font-body);
    font-size: 17px;
    /* Simply larger for modern feel */
    color: var(--text-color);
    line-height: 1.75;
    background-color: #f8fafc;
    overflow-x: hidden;
    letter-spacing: -0.02em;
    /* Modern typography tightening */
}

body.menu-open {
    overflow: hidden !important;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    word-break: keep-all;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-desc {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}



.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 50px;
    /* Modern Pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 66, 37, 0.2);
}

.btn:hover {
    background-color: #00301a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 66, 37, 0.3);
}

/* Header & Navigation */
header {
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 22000;
    transition: all 0.3s;
}

body.menu-open header {
    backdrop-filter: none !important;
    filter: none !important;
    z-index: 30000;
}

@media (max-width: 1024px) {
    header {
        height: 60px;
    }
}

/* Transparent Header Modifier for Homepage */
body.home header {
    background-color: transparent;
    border-bottom: none;
    backdrop-filter: none;
    box-shadow: none;
}

body.home header .gnb>ul>li>a {
    color: #fff;
    font-weight: 700;
}

body.home header .gnb>ul>li:hover>a {
    color: var(--secondary-color);
}

body.home header .logo a {
    color: #fff;
}

/* Scrolled state for transparent header */
body.home header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}



body.home header.scrolled .logo a {
    color: var(--primary-color);
}

body.home header.scrolled .gnb>ul>li>a {
    color: var(--text-color);
}

body.home header.scrolled .gnb>ul>li:hover>a {
    color: var(--primary-color);
}

/* Logo Image Filter for White Text on Transparent Header */
body.home header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 1;
}

.mobile-trigger {
    display: none;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.05em;
}

.gnb {
    flex: 0 0 auto;
    min-width: max-content;
}

.gnb>ul {
    display: flex;
    gap: 50px;
}

.gnb>ul>li {
    position: relative;
    padding: 35px 0;
}

.gnb>ul>li>a {
    font-size: 1rem;
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.gnb>ul>li:hover>a {
    color: var(--primary-color);
}

.gnb>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.gnb>ul>li:hover>a::after {
    width: 100%;
}

.mobile-menu-header {
    display: none;
}

@media (min-width: 1025px) and (max-width: 1300px) {
    .gnb>ul {
        gap: 30px;
    }

    .gnb>ul>li>a {
        font-size: 0.95rem;
    }
}

/* Header Utility & CTA */
.header-util {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-cta {
    background: #259b67;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 66, 37, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.header-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.header-cta span {
    position: relative;
    z-index: 1;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.header-cta:hover {
    background: #005a32;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 66, 37, 0.25);
    color: #fff;
}

.header-cta:hover i {
    transform: scale(1.2) rotate(15deg);
    animation: pulse 0.6s ease infinite;
}

.header-cta:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1.2) rotate(15deg);
    }

    50% {
        transform: scale(1.3) rotate(15deg);
    }
}



@media (max-width: 1024px) {
    .header-util {
        display: none;
    }

    .logo img {
        height: 36px !important;
    }
}

/* Submenu */
.gnb .submenu {
    display: none;
    position: absolute;
    top: calc(100% - 5px);
    /* Move up slightly to overlap padding and ensure no gap */
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--secondary-color);
    min-width: 180px;
    padding: 8px 0;
    /* Reduced from 15px */
    border-radius: 0 0 8px 8px;
    animation: fadeInDown 0.2s ease-out;
    z-index: 100;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.gnb>ul>li:hover .submenu {
    display: block;
}

@media (max-width: 1024px) {
    .mobile-trigger {
        display: block;
        cursor: pointer;
        z-index: 20001;
    }

    .mobile-trigger span {
        display: block;
        width: 20px;
        height: 2px;
        background: #111;
        margin: 4px 0;
        transition: 0.3s;
    }

    .mobile-trigger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-trigger.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-trigger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    body.home header:not(.scrolled) .mobile-trigger span {
        background: #fff;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 25000;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .gnb {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        padding: 80px 30px 50px;
        /* Increased top padding for header space */
        transition: 0.3s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 26000;
        display: block !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }


    .mobile-menu-header {
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        z-index: 20002;
    }

    .desktop-home-link {
        display: none;
    }

    .mobile-home-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f8fafc;
        border-radius: 12px;
        color: var(--primary-color);
        font-size: 1.2rem;
        transition: all 0.3s;
    }

    .mobile-home-icon:hover {
        background: var(--primary-color);
        color: #fff;
    }

    .gnb.active {
        right: 0;
    }

    .gnb>ul {
        flex-direction: column;
        gap: 0;
    }

    .gnb>ul>li>a::after {
        display: none !important;
    }

    .gnb>ul>li {
        padding: 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .gnb>ul>li>a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        color: var(--text-color) !important;
    }

    .gnb .submenu {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 15px 15px;
        animation: none;
    }

    .gnb .submenu li a {
        padding: 14px 0;
        font-size: 0.95rem;
    }

    .mobile-cta {
        display: block !important;
        margin-top: 30px;
    }

    .header-cta.mobile-mode {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 1rem;
        background: #259b67 !important;
        box-shadow: none !important;
    }

    .header-cta.mobile-mode:hover,
    .header-cta.mobile-mode:active,
    .header-cta.mobile-mode:focus {
        background: #259b67 !important;
        transform: none !important;
        box-shadow: none !important;
        color: #fff !important;
    }

    .header-cta.mobile-mode i,
    .header-cta.mobile-mode:hover i {
        transform: none !important;
        animation: none !important;
    }

    .header-cta.mobile-mode::before,
    .header-cta.mobile-mode:hover::before {
        display: none !important;
    }
}

.gnb .submenu li a {
    display: block;
    padding: 10px 25px;
    font-size: 0.95rem;
    color: #555;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.2s;
}

.gnb .submenu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Footer */
/* Footer */
footer {
    background-color: #022c22;
    /* Darker Green as requested */
    color: #fff;
    padding: 100px 0;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Brand Col */
.brand-col {
    flex: 1.5;
    /* Slightly wider */
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-desc {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 400px;
}

.footer-sns {
    margin-bottom: 40px;
}

.sns-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.sns-icon:hover {
    background: #fff;
    color: var(--primary-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Headings in Footer */
.footer-col h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Contact List */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 0px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list .icon {
    color: var(--secondary-color);
    /* Gold Amber */
}

/* Quick Links */
.quick-links li {
    margin-bottom: 5px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.quick-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Footer */
/* Responsive Footer */
@media (max-width: 1024px) {
    footer {
        padding-bottom: 120px;
        /* Space for floating menu */
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 120px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

    .brand-col {
        display: block;
    }

    .footer-desc {
        max-width: 100%;
    }

    .contact-list li {
        justify-content: flex-start;
    }
}

/* Common Banner / Page Header */


/* Tables */
.data-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 40px 0;
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    min-width: 600px;
    border-top: 2px solid var(--primary-color);
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th,
.data-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.data-table th {
    background-color: var(--light-gray);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.data-table td {
    color: #555;
    background-color: #fff;
    transition: background 0.3s;
}

.data-table tr:hover td {
    background-color: #fafafa;
}

/* Content Layouts */
.content-section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
}

.flex-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.img-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.text-box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 40px !important;
    border: 1px solid #eee;
}

/* Charts & Graphs */
.chart-container {
    margin: 60px 0;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #efefef;
}

/* Inputs */
input[type="text"],
select,
textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fafafa;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    outline: none;
}


/* --- INDEX PAGE REDESIGN STYLES --- */

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero_bg.jpg') no-repeat center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    /* Override margin for transparent header effect if needed */
    padding-top: var(--header-height);
}

/* Hero Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s infinite ease-in-out;
}

.scroll-indicator .arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -5px;
    /* Tighten chevrons */
}

.scroll-indicator .arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    margin: -4px;
    animation: arrowDown 2s infinite ease-in-out;
}

.scroll-indicator .arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator .arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

.scroll-indicator .scroll-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-indicator .hand-icon {
    display: none;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {

    .scroll-indicator .mouse,
    .scroll-indicator .arrows {
        display: none;
    }

    .scroll-indicator .hand-icon {
        display: block;
        animation: swipeTouch 2s infinite;
    }

    .scroll-indicator .scroll-text {
        margin-top: 5px;
    }
}

@keyframes swipeTouch {
    0% {
        transform: translateY(-10px);
        opacity: 0.4;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }

    100% {
        transform: translateY(-10px);
        opacity: 0.4;
    }
}

@keyframes mouseWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    60% {
        top: 24px;
        opacity: 0;
    }

    100% {
        top: 8px;
        opacity: 0;
    }
}

@keyframes arrowDown {
    0% {
        opacity: 0;
        transform: translateY(-5px) rotate(45deg);
    }

    50% {
        opacity: 1;
        transform: translateY(0) rotate(45deg);
    }

    100% {
        opacity: 0;
        transform: translateY(5px) rotate(45deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    color: #FFD700;
    /* From inline */
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    /* From inline */
}

.hero-title {
    font-size: 4.5rem;
    color: #fff;
    /* Set base color to white */
    font-weight: 800;
    margin: 0px 0 40px;
    /* From inline: margin: 20px 0 40px; */
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: #FFD700;
    /* From inline span style */
}

@media (max-width: 1024px) {
    .hero-section {
        height: calc(100dvh - 70px);
        /* Exclude floating menu height */
        min-height: 500px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .scroll-indicator {
        bottom: 20px;
        /* Adjust for shorter height */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
        /* Adjust margin too */
    }
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    /* Ensure items align center */
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        padding: 12px 20px;
    }
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    display: flex;
    /* Use flex for centering text */
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* Reset line height for precise centering */
    transition: all 0.3s ease;
}


.hero-actions .btn-primary {
    border: 2px solid transparent;
    /* Match outline border width */
    background-color: #FFD700;
    color: var(--text-color);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shine Effect for Hero Primary Button */
.hero-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.6s;
    z-index: -1;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.5);
    border-color: #FFD700;
    /* Ensure border color matches on hover */
}

.hero-actions .btn-primary:hover::before {
    left: 100%;
}

.hero-actions .btn-outline {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-actions .btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:active,
.hero-actions .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    /* Use flex for centering text */
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* Reset line height for precise centering */
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Common Section Styles */
.main-section {
    padding: 120px 0;
}

.main-section h2 {
    font-size: 3rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .main-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

/* Section 1: Leadership (White) */
.leadership-section {
    background: #fff;
}

.leadership-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

@media (max-width: 1024px) {
    .leadership-content {
        flex-direction: column;
        gap: 40px;
    }
}

.leadership-text {
    flex: 1;
    text-align: left;
}

@media (max-width: 1024px) {
    .leadership-text {
        text-align: left;
        flex: none;
    }
}

.badge-pill {
    display: inline-block;
    background: #FFD54F;
    color: #B8860B;
    font-weight: 700;
    font-size: 10px;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.leadership-text h2 {
    margin-bottom: 30px;
    color: #002B19;
}

.leadership-text .section-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 50px;
    font-size: 1rem;
    word-break: keep-all;
    text-align: left;
    margin-left: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* Reduced from 40px */
    margin-bottom: 40px;
    /* Reduced from 60px */
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 0 !important;
    }

    .leadership-text .section-desc {
        margin-bottom: 40px;
        font-size: 1rem;
        line-height: 1.7;
    }

    .leadership-image img {
        border-radius: 20px !important;
    }
}

.leadership-section .feature-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: none !important;
    transition: none !important;
}

.leadership-section .feature-item:hover {
    transform: none !important;
    box-shadow: none !important;
}

.leadership-section .feature-item h4 {
    font-size: 1rem;
    color: #002B19;
    margin-bottom: 8px;
    font-weight: 700;
}

.leadership-section .feature-item p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.25rem;
}

.text-link {
    color: #064e3b;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    font-size: 1rem;
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(8px);
}

.text-link:hover {
    color: var(--secondary-color);
}

.leadership-image {
    flex: 1;
    /* Changed from 1.2 for equal column widths */
    position: relative;
    border-radius: 40px;
    overflow: visible;
}

.leadership-image img {
    width: 100%;
    display: block;
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stat-card {
    position: absolute;
    top: 40px;
    right: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: #555;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stat-card {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
        border-radius: 12px;
        min-width: 120px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

/* Section 2: Data/Reading (Dark Theme) */
.dark-section {
    background-color: #020b16;
    /* From inline */
    color: #fff;
}

.dark-section h2 {
    color: #fff;
    margin-bottom: 60px;
}

.dark-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.dark-header .sub-title {
    color: #d4af37;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.dark-header .view-more {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
}

.card-grid {
    display: flex;
    gap: 30px;
}

@media (max-width: 1024px) {
    .card-grid {
        flex-direction: column;
    }
}

.dark-card {
    flex: 1;
    background: #11161d;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    transition: transform 0.3s;
}

.dark-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #222;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dark-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.dark-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section 2: Card Accents */
.dark-card:nth-child(1) .card-icon-box {
    background: rgba(0, 150, 136, 0.15);
    color: #4db6ac;
}

.dark-card:nth-child(2) .card-icon-box {
    background: rgba(255, 112, 67, 0.15);
    color: #ff7043;
}

.dark-card:nth-child(3) .card-icon-box {
    background: rgba(66, 165, 245, 0.15);
    color: #42a5f5;
}

/* Section 3: Care (Mint/Light Green) */
.care-section {
    background-color: #E6F9F0;
    /* Soft Mint */
    text-align: center;
}

.care-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.care-header .sub-title {
    display: inline-block;
    background: #FFD54F;
    color: #B8860B;
    font-weight: 700;
    font-size: 10px;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.care-header h2 {
    color: #002B19;
    margin-bottom: 20px;
}

.care-desc {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.care-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .care-grid {
        flex-direction: column;
    }
}

.care-card {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    /* Large rounded corners */
    box-shadow: 0 10px 40px rgba(0, 66, 37, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .care-card {
        padding: 40px 30px;
        flex-direction: column;
        gap: 20px;
    }
}

.care-card:hover {
    transform: translateY(-5px);
}

.care-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    color: #fff;
}

.care-icon-box.dark {
    background-color: #002B19;
}

.care-icon-box.orange {
    background-color: #F39C12;
}

.care-text h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 800;
}

.care-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    word-break: keep-all;
}

.text-link-sm {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00A86B;
    text-decoration: none;
    border-bottom: 2px solid #00A86B;
    padding-bottom: 3px;
    transition: all 0.2s;
}

.text-link-sm:hover {
    color: #007a4d;
    border-color: #007a4d;
}

/* Section 4: Story/Gallery */
.story-section {
    background: #fff;
    text-align: center;
}

/* Shared Section Header Styles */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header .sub-title {
    display: inline-block;
    background: #FFD54F;
    color: #B8860B;
    font-weight: 700;
    font-size: 10px;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    color: #002B19;
    margin-bottom: 20px;
}

.section-desc {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Legacy support - keep for backward compatibility */
.care-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.care-header .sub-title {
    display: inline-block;
    background: #FFD54F;
    color: #B8860B;
    font-weight: 700;
    font-size: 10px;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.care-header h2 {
    color: #002B19;
    margin-bottom: 20px;
}

.care-desc {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.story-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.story-header .sub-title {
    display: inline-block;
    background: #FFD54F;
    color: #B8860B;
    font-weight: 700;
    font-size: 10px;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.story-header h2 {
    color: #002B19;
    margin-bottom: 20px;
}

.story-desc {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}



.story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .story-header,
    .story-header .sub-title,
    .story-header h2,
    .story-header .story-desc {
        text-align: left;
        margin-left: 0;
    }

    .story-desc {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.story-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.story-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-item:hover img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.story-overlay span {
    color: #ffb300;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
    transform: translateY(20px);
    transition: transform 0.4s;
}

.story-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s;
}

.story-overlay p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .story-overlay p {
        opacity: 0.9 !important;
        height: auto !important;
        margin-bottom: 10px !important;
        font-size: 0.8rem;
    }

    .story-overlay span,
    .story-overlay h3 {
        transform: none !important;
    }

    .story-overlay {
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    }

    .story-item {
        height: 250px;
    }
}

.story-item:hover .story-overlay p {
    opacity: 1;
    height: 20px;
    margin-bottom: 15px;
}

.story-item:hover .story-overlay span,
.story-item:hover .story-overlay h3 {
    transform: translateY(0);
}

.story-overlay .view-more {
    font-weight: 700;
    font-size: 0.75rem;
    border-bottom: 1px solid #fbbf244d;
    line-height: 1rem;
    display: inline-block;
    padding-bottom: 2px;
    color: #ffb300;
    width: fit-content;
}

.story-overlay .view-more i {
    margin-left: 5px;
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.story-item:hover .view-more i {
    transform: translateX(5px);
}

.story-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* Section 5: CTA (Dark Green Panel) */
.cta-section {
    padding-bottom: 80px;
}

.cta-panel {
    background-color: #002B19;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    border-radius: 40px;
    padding: 90px;
    display: flex;
    color: #fff;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

/* Remove old overlay */
.cta-panel::before {
    display: none;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    color: #8da696;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item .icon-box {
    width: 60px;
    height: 60px;
    background: #1a4030;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9800;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item .info-text {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.75rem;
    color: #6a8c7d;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.contact-item .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

/* CTA Form */
.cta-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cta-form {
    background: #1a3529;
    padding: 35px;
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-form h3 {
    color: #ffb300;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 16px;
    background: #2a4438;
    border: 1px solid #3d564b;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
    /* Ensure padding doesn't affect width */
}

.cta-form select {
    margin-bottom: 15px;
}

.cta-form textarea {
    height: 80px;
    resize: none;
    margin-bottom: 25px;
}

.cta-form input::placeholder,
.cta-form select,
.cta-form textarea::placeholder {
    color: #8da696;
}

.cta-form button {
    width: 100%;
    background: #fff;
    color: #002B19;
    font-weight: 700;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0;
}

.cta-form button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive tweaks for the new layout */
@media (max-width: 1024px) {
    .cta-panel {
        flex-direction: column;
        padding: 50px 30px;
        gap: 0;
    }

    .cta-left {
        text-align: left;
        margin-bottom: 50px;
    }

    .cta-left h2 {
        font-size: 2.2rem;
    }

    .cta-contact-list {
        align-items: flex-start;
    }

    .cta-right {
        justify-content: center;
        width: 100%;
    }

    .cta-form {
        max-width: 100%;
        padding: 0;
        border: 0;
        background-color: transparent;
    }
}

@media (max-width: 768px) {
    .cta-panel {
        padding: 40px 20px;
    }

    .cta-left h2 {
        font-size: 1.8rem;
    }

    .cta-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Unified Page Header --- */
.page-header {
    margin-bottom: 60px;
    max-width: 100%;
}

.page-header.centered {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px;
}

.page-header.centered .title-underline {
    margin-left: auto;
    margin-right: auto;
}

.page-badge {
    display: inline-block;
    background-color: #fef3c7;
    color: #ef9259;
    border: 1px solid #fde68a;
    font-weight: 700;
    font-size: 10px;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.page-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 20px;
    word-break: keep-all;
}

/* Page Description (Optional) */
.page-desc {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 20px;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .page-desc {
        font-size: 1rem;
        line-height: 1.7;
        margin-top: 15px;
    }

    .page-header.centered {
        text-align: left;
        margin-left: 0;
        margin-bottom: 60px;
    }

    .page-header.centered .title-underline {
        margin: 20px 0;
    }
}

.page-title .highlight {
    color: #F39C12;
}

.title-underline {
    display: none;
}



/* About SCE Page Redesign */
.about-page {
    padding-top: 0;
}

.about-header {
    margin-bottom: 80px;
    max-width: 800px;
}

.about-badge {
    display: inline-block;
    background: #FFD54F;
    /* Brighter yellow/gold */
    color: #B8860B;
    font-weight: 700;
    font-size: 10px;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.about-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 800;
    word-break: keep-all;
}

.about-title .highlight {
    color: #F39C12;
}

.about-desc {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* About Environment Section */
.about-env-section {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 150px;
}

.env-image-box {
    flex: 1;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.env-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.env-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: #fff;
    z-index: 10;
}

.env-image-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.env-overlay h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.env-overlay p {
    font-size: 1rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.env-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.env-feature-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #f0f0f0;
}

.env-feature-card .dot {
    width: 8px;
    height: 8px;
    background: #FF9800;
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
}

.env-feature-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}

.env-feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    word-break: keep-all;
}

/* Excellence Section */
/* Excellence Section */
.excellence-section {
    /* Deep Green */
    background-color: #064e3b;
    color: #fff;
    padding: 80px;
    border-radius: 50px;
    margin: 50px 0;
}

.excellence-section .container {
    display: flex;
    gap: 80px;
    align-items: stretch;
    /* Stretch for border */
    max-width: 1400px;
}

.excellence-header {
    flex: 0 0 280px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.excellence-header h2 {
    font-size: 1.875rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 800;
}

.excellence-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.25rem;
    font-size: 0.875rem;
    word-break: keep-all;
}

.excellence-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    padding-left: 20px;
}

.excellence-item .num {
    display: block;
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #F39C12;
    /* Gold/Orange */
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.excellence-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.excellence-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.6;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .about-env-section {
        flex-direction: column;
    }

    .env-image-box,
    .env-features {
        width: 100%;
    }

    .excellence-section .container {
        flex-direction: column;
    }

    .excellence-header {
        flex: auto;
        margin-bottom: 50px;
    }
}



/* Subpage Sidebar Layout */
.subpage-layout {
    display: flex;
    gap: 3rem;
    padding: 180px 0 100px;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .subpage-layout {
        flex-direction: column;
        padding-top: 100px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .subpage-layout {
        padding-top: 76px;
    }
}

.sidebar-menu {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    height: fit-content;
    padding: 0;
    border-radius: 20px;
    z-index: 10;
}

@media (max-width: 1024px) {
    .sidebar-menu {
        width: 100%;
        position: relative;
        top: 0;
    }
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: #002B19;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 1024px) {
    .sidebar-title {
        display: none;
        /* Hide category title on mobile as it's often redundant or takes too much space */
    }
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1024px) {
    .sidebar-menu ul {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 5px 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        /* Smooth momentum scrolling on iOS */
        scroll-behavior: smooth;
        /* Smooth scrolling */
        scroll-snap-type: x proximity;
        /* Snap to items when scrolling stops */
    }

    .sidebar-menu ul::-webkit-scrollbar {
        display: none;
    }
}

.sidebar-menu li {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .sidebar-menu li {
        margin-bottom: 0;
        flex-shrink: 0;
        scroll-snap-align: center;
        /* Snap alignment for each item */
    }
}

.sidebar-menu a {
    display: block;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    background-color: #fff;
    border: 0;
    border-radius: 12px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    .sidebar-menu a {
        padding: 10px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

.sidebar-menu a:hover {
    background: #f8f9fa;
    color: #002B19;
}

.sidebar-menu li.active a {
    border: 0;
    color: #fff;
    background-color: #064e3b;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    font-weight: 700;
}

.subpage-content {
    flex: 1;
    min-width: 0;
}

/* Update styles for content inside subpage-content to fit correctly */
.subpage-content .container {
    width: 100%;
    padding: 0;
    max-width: none;
}

@media (max-width: 1024px) {
    .subpage-layout {
        flex-direction: column;
        padding-top: 76px;
        gap: 30px;
    }

    .sidebar-menu {
        width: 100%;
        position: static;
        box-shadow: none;
        padding: 0 20px;
    }

    .sidebar-menu ul {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 5px;
    }

    .sidebar-menu li {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .sidebar-menu a {
        background: #f8f9fa;
        white-space: nowrap;
    }

    .sidebar-title {
        display: none;
    }

    .subpage-content {
        padding: 0 20px;
    }
}

/* Greetings Page Styles */
.greetings-page {
    /* Container styles handled by subpage layout */
    padding-bottom: 50px;
}

.greetings-header {
    margin-bottom: 60px;
}

.greetings-badge {
    display: inline-block;
    background: #FFD54F;
    color: #B8860B;
    font-weight: 700;
    font-size: 10px;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.greetings-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 20px;
}

.greetings-title .highlight {
    color: #F39C12;
}


.greetings-body {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.director-image-box {
    flex: 0 0 400px;
    position: relative;
    border-radius: 40px 0 40px 0;
    /* Asymmetric radius */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.director-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.director-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    /* Overhang effect if possible, or inside */
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    backdrop-filter: blur(5px);
}

.director-card .name-en {
    display: block;
    color: #F39C12;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.director-card .title-en {
    display: block;
    color: #999;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.director-message {
    flex: 1;
}

.message-quote {
    font-size: 1.6rem;
    color: #002B19;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #F39C12;
}

.intro-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.message-point {
    margin-bottom: 30px;
}

.message-point h4 {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.message-point p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.highlight-quote {
    background: #f8f9fa;
    border-left: none;
    padding: 25px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: #002B19;
    margin: 40px 0;
    text-align: center;
    font-family: 'Noto Serif KR', serif;
}

.closing-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.signature-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #FFF9E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F39C12;
}

.signature-block .text-group {
    display: flex;
    flex-direction: column;
}

.signature-block .label {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.signature-block .name {
    font-size: 1rem;
    color: var(--text-color);
}

.greetings-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background: #fcfcfc;
    border-radius: 40px;
}

.feature-item .num {
    display: block;
    color: #F39C12;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .greetings-body {
        flex-direction: column;
    }

    .director-image-box {
        flex: auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .greetings-features {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

/* --- Philosophy Page Content Implementation --- */
.philosophy-grid-section {
    margin-bottom: 120px;
}

.philosophy-pillars {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.pillar-card {
    flex: 1;
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: #FFF9E5;
    color: #F39C12;
    border-radius: 20%;
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.pillar-card:hover .pillar-icon {
    background: #F39C12;
    color: #fff;
}

.pillar-category {
    font-size: 0.8rem;
    color: #F39C12;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: left;
}

.pillar-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 20px;
    word-break: keep-all;
    text-align: left;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
    text-align: left;
}

/* Vision Section (Dark) */
.vision-section {
    background-color: #050a10;
    border-radius: 50px;
    padding: 80px;
    color: #fff;
    display: flex;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 120px;
}

.vision-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-question {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 50px;
    word-break: keep-all;
    color: #ffffff;
}

.vision-question span {
    color: #F39C12;
    font-weight: 800;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-list li {
    margin-bottom: 30px;
}

.vision-list h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}



.vision-list p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.vision-img {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 400px;
}

.vision-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Promise Section */
.promise-section {
    text-align: center;
    margin-bottom: 60px;
}

.promise-title {
    font-size: 1.8rem;
    color: #002B19;
    font-weight: 800;
    margin-bottom: 20px;
}

.promise-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .philosophy-pillars {
        flex-direction: column;
    }

    .vision-section {
        flex-direction: column;
        padding: 50px;
    }

    .vision-img {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .vision-question {
        font-size: 1.5rem;
    }

    .vision-img {
        display: none;
    }
}

/* --- Location Page Redesign --- */
.location-map-container {
    background: #e8eef3;
    border-radius: 40px;
    padding: 24px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border: 15px solid #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.map-icon {
    width: 100px;
    height: 100px;
    background: transparent;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: #F39C12;
    position: relative;
    /* Container stays static, children move */
}

.map-icon i {
    display: block;
    animation: mapBounce 1s infinite;
}

.map-icon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    /* Fixed position relative to static .map-icon */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(4px);
    z-index: -1;
    animation: shadowBounce 1s infinite;
}

@keyframes mapBounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes shadowBounce {

    0%,
    100% {
        transform: translateX(-50%) scale(0.7);
        opacity: 0.15;
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.4;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.location-address {
    margin-bottom: 10px;
}

.location-address h3 {
    color: #475569;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.7rem;
    margin-bottom: 10px;
}

.location-address p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.map-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 64px;
}

@media (max-width: 768px) {
    .map-buttons {
        flex-direction: column;
    }
}

.map-btn {
    background: #fff;
    color: var(--text-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.location-info-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
}

.location-info-card.highlight {
    background: #FFF9E5;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: #FFF9E5;
    color: #F39C12;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Card Specific Icon Colors */
.location-info-card.subway .info-card-icon {
    background: #eff6ff;
    color: #3b82f6;
}

.location-info-card.transport .info-card-icon {
    background: #ecfdf5;
    color: #10b981;
}

.location-info-card.contact .info-card-icon {
    background: #fff1f2;
    color: #f43f5e;
}

.info-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 20px;
    padding: 0;
    line-height: 1.7em;
}

.info-card-label {
    font-size: 0.75rem;
    color: #64748b;
    /* Default gray */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    display: block;
}

.location-info-card.subway .info-card-label {
    color: #3b82f6;
}

.location-info-card.transport .info-card-label {
    color: #10b981;
}

.location-info-card.contact .info-card-label {
    color: #f43f5e;
}

.info-card-content {
    color: #666;
    line-height: 1.7em;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
}

.info-card-content p,
.info-card-content h4,
.info-card-content div {
    margin: 0;
    padding: 0;
    line-height: 1.7em;
}

.info-card-content .item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.info-card-content .item-icon {
    width: 24px;
    height: 24px;
    background: #F39C12;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.item-icon.line-2 {
    background-color: #37b44a;
    /* Seoul Metro Line 2 Green */
}

.item-icon.line-3 {
    background-color: #fa5f2c;
    /* Seoul Metro Line 3 Orange */
}

.info-card-content .item-text {
    flex: 1;
}

.contact-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 6px !important;
}

.contact-hours {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 0 !important;
    font-size: 0.9rem;
}

.contact-hours:first-of-type {
    border-top: none;
}

.contact-hours .label {
    color: #999;
}

.contact-hours .value {
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .location-info-grid {
        grid-template-columns: 1fr;
    }

    .location-map-container {
        padding: 50px 30px;
    }
}

/* --- Enhanced Education Section Styles --- */
.edu-section {
    margin-bottom: 100px;
}

.edu-section .section-title {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.edu-section>p {
    color: #999;
    font-size: 0.95rem;
}

.feature-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
    transition: all 0.3s;
    position: relative;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 40px;
    }
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-item .icon-box {
    width: 60px;
    height: 60px;
    background: #e8f5f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #00a86b;
}

.feature-item:nth-child(2) .icon-box {
    background: #fff4e6;
    color: #f39c12;
}

.feature-item:nth-child(3) .icon-box {
    background: #ffe8f0;
    color: #e74c3c;
}

.feature-item:nth-child(4) .icon-box {
    background: #e8f0ff;
    color: #3498db;
}

.feature-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-item>p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item ul li {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
}

.feature-item ul li::before {
    content: '\2022';
    color: #f39c12;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 4px;
}

/* Data Table Enhancement */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.data-table thead {
    background: linear-gradient(135deg, #002B19, #064e3b);
    color: #fff;
}

.data-table thead th {
    padding: 20px 15px;
    font-weight: 700;
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.data-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.data-table tbody tr:hover {
    background-color: #f8f9fa;
}

.data-table tbody td {
    padding: 18px 15px;
    text-align: center;
    font-size: 0.875rem;
}

.data-table tbody td:first-child {
    font-weight: 700;
    color: #191919;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        padding-left: 0;
        margin-top: 15px;
    }

    .data-table {
        font-size: 0.85rem;
    }

    .data-table thead th,
    .data-table tbody td {
        padding: 12px 8px;
    }
}

/* --- Direction Page Specific Styles --- */
.edu-section.section-spacing {
    margin-bottom: 80px;
}

.edu-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.feature-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.data-table .col-age {
    width: 10%;
}

.data-table .col-growth {
    width: 30%;
}

.data-table .col-features {
    width: 60%;
}

.data-table .text-left {
    text-align: left;
}

.roadmap-note {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0px;
}

.age-stage-wrapper {
    margin-bottom: 50px;
}

.age-stage-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 10px;
}

.table-wrapper {
    overflow-x: auto;
}

.data-table.min-width {
    min-width: 800px;
}

.roadmap-footer {
    margin-top: 40px;
    text-align: center;
}

.roadmap-footer p {
    color: #999;
    font-size: 0.95rem;
}

/* SR Test Intro Section Redesign */
.sr-intro-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, #edf5ef 0%, #e1edf9 100%);
    border-radius: 40px;
    margin-bottom: 60px;
}

.sr-intro-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.sr-intro-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    word-break: keep-all;
    margin-top: -20px;
}

.sr-key-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.sr-key-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sr-key-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 66, 37, 0.1);
    border-color: var(--secondary-color);
}

.sr-key-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.sr-key-card:hover .sr-key-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: rotate(10deg);
}

.sr-key-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 800;
}

.sr-key-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .sr-key-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sr-key-grid {
        grid-template-columns: 1fr;
    }

    .sr-intro-section {
        padding: 60px 20px;
    }
}

/* Growth Chart Section Redesign */
.growth-section {
    padding: 60px 40px;
    background-color: #ffffff;
    margin-bottom: 60px;
    border-radius: 40px;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .growth-section {
        padding: 0;
    }
}

.chart-wrapper {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 60px 40px 40px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-inner {
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 40px;
    position: relative;
    border-bottom: 2px solid #edf2f7;
}

.chart-grid-lines {
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.grid-line {
    width: 100%;
    height: 1px;
    background: #f1f5f9;
    position: relative;
}

.grid-line span {
    position: absolute;
    left: -45px;
    top: -10px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}

.growth-bar-group {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
    justify-content: flex-end;
}

.growth-bar {
    width: 60px;
    border-radius: 15px 15px 0 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: block;
    transform-origin: bottom;
    animation: barGrow 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes barGrow {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.growth-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
    border-radius: inherit;
}

.growth-bar:hover::before {
    transform: translateX(100%);
}

.growth-bar.stage-1 {
    background: linear-gradient(180deg, #2dd4bf 0%, #0d9488 100%);
    animation-delay: 0.2s;
}

.growth-bar.stage-2 {
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    animation-delay: 0.4s;
}

.growth-bar.stage-3 {
    background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
    animation-delay: 0.6s;
}

.growth-bar:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
    z-index: 10;
}

.bar-label-top {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
}

.growth-bar.stage-1 .bar-label-top {
    color: #0d9488;
}

.growth-bar.stage-2 .bar-label-top {
    color: #2563eb;
}

.growth-bar.stage-3 .bar-label-top {
    color: #7c3aed;
}

.bar-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    text-align: center;
    width: 100px;
}

.bar-period {
    font-weight: 700;
    color: #334155;
    margin-bottom: 5px;
    display: block;
}

.bar-tag {
    font-size: 0.85rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 10px;
}

.chart-annotation {
    background: linear-gradient(135deg, var(--primary-color) 0%, #002b19 100%);
    color: #fff;
    padding: 30px;
    border-radius: 25px;
    margin-top: 120px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.ann-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.ann-text h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.ann-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .chart-wrapper {
        padding: 40px 30px 30px;
        margin-top: 40px;
    }

    .chart-inner {
        padding: 0 20px 40px;
        height: 350px;
    }

    .chart-grid-lines {
        left: 20px;
        right: 20px;
    }

    .grid-line span {
        left: -35px;
        font-size: 0.75rem;
    }

    .growth-bar-group {
        width: 100px;
    }

    .growth-bar {
        width: 50px;
    }

    .chart-annotation {
        margin-top: 80px;
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .ann-icon {
        font-size: 2rem;
    }

    .ann-text h4 {
        font-size: 1rem;
    }

    .ann-text br {
        display: none;
    }
}

@media (max-width: 768px) {
    .chart-wrapper {
        padding: 40px 15px 20px;
        border-radius: 25px;
    }

    .chart-inner {
        height: 300px;
        padding: 0 10px 0px;
    }

    .chart-grid-lines {
        left: 10px;
        right: 10px;
    }

    .grid-line span {
        left: -10px;
        top: -20px;
        font-size: 0.7rem;
    }

    .growth-bar-group {
        width: 70px;
    }

    .growth-bar {
        width: 35px;
        border-radius: 10px 10px 0 0;
    }

    .bar-label-top {
        font-size: 0.85rem;
        top: -30px;
    }

    .bar-info {
        width: 70px;
    }

    .bar-period {
        font-size: 0.85rem;
    }

    .bar-tag {
        font-size: 0.75rem;
        padding: 1px 8px;
    }

    .chart-annotation {
        margin-top: 120px;
        padding: 20px;
        border-radius: 20px;
    }
}

/* SR Strategy Section Redesign */
.strategy-section {
    padding: 60px 40px;
    margin-bottom: 60px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.strategy-card {
    padding: 50px 30px;
    border-radius: 35px;
    background: #fff;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.strategy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.strategy-card .icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.strategy-card.orange .icon-wrap {
    background: #fffcf0;
    color: #f59e0b;
}

.strategy-card.emerald .icon-wrap {
    background: #f0fdf4;
    color: #10b981;
}

.strategy-card.blue .icon-wrap {
    background: #eff6ff;
    color: #3b82f6;
}

.strategy-card.rose .icon-wrap {
    background: #fff1f2;
    color: #f43f5e;
}

.strategy-card.orange:hover {
    border-color: #f59e0b;
}

.strategy-card.emerald:hover {
    border-color: #10b981;
}

.strategy-card.blue:hover {
    border-color: #3b82f6;
}

.strategy-card.rose:hover {
    border-color: #f43f5e;
}

.strategy-card h4 {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 20px;
    word-break: keep-all;
}

.strategy-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    word-break: keep-all;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.03;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .strategy-section {
        padding: 0px;
    }
}

/* Reading Training Page Redesign */
.reading-intro {
    padding: 60px 40px;
    background: linear-gradient(135deg, #edf5ef 0%, #e1edf9 100%);
    border-radius: 40px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.reading-intro .section-title {
    margin-bottom: 50px;
}

.reading-intro-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.75;
    word-break: keep-all;
    max-width: 800px;
    margin: 0 auto;
}

.process-container {
    padding: 40px 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.library-showcase {
    margin-bottom: 60px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.library-showcase img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.library-showcase:hover img {
    transform: scale(1.05);
}

.library-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    pointer-events: none;
}

.library-overlay h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.library-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 100px;
    height: 100px;
    border-radius: 35px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.step-circle i {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.step-circle span {
    font-weight: 800;
    font-size: 1rem;
}

.process-step.step-1 .step-circle {
    color: #6366f1;
}

.process-step.step-2 .step-circle {
    color: #f59e0b;
}

.process-step.step-3 .step-circle {
    color: #10b981;
}

.process-step.step-4 .step-circle {
    color: #ec4899;
}

.process-step:hover .step-circle {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.process-step.step-1:hover .step-circle {
    border-color: #6366f1;
}

.process-step.step-2:hover .step-circle {
    border-color: #f59e0b;
}

.process-step.step-3:hover .step-circle {
    border-color: #10b981;
}

.process-step.step-4:hover .step-circle {
    border-color: #ec4899;
}

.step-arrow {
    flex: 0 0 40px;
    font-size: 1.5rem;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 50px;
}

.reading-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.reading-card {
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reading-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    padding-left: 20px;
}

.reading-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.reading-card ul {
    list-style: none;
    padding: 0;
}

.reading-card li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #475569;
    padding-left: 25px;
    position: relative;
}

.reading-card li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary-color);
}

.quote-box {
    text-align: center;
    padding: 60px 40px;
    background: #1e293b;
    border-radius: 40px;
    color: #fff;
}

.quote-box p {
    font-size: 1.8rem;
    font-weight: 700;
    word-break: keep-all;
    line-height: 1.5;
}


/* Hybrid Section Styling */
.hybrid-section {
    padding: 80px 0 120px;
    position: relative;
}

.hybrid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hybrid-content .section-title {
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 2rem;
}

.hybrid-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.hybrid-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    word-break: keep-all;
    opacity: 0.9;
}

.hybrid-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hybrid-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 10px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.hybrid-item:hover {
    transform: translateX(10px);
}

.hybrid-item .item-num {
    width: 44px;
    height: 44px;
    background: #FEF3C7;
    color: #92400E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
}

.hybrid-item .item-text h5 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.hybrid-item .item-text p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Visual Area */
.hybrid-visual {
    position: relative;
}

.hybrid-img-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hybrid-img-box img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.hybrid-visual:hover .hybrid-img-box img {
    transform: scale(1.05);
}

.core-quote-box {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: #064E3B;
    /* Deep Forest Green from image */
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 380px;
    z-index: 2;
}

.core-quote-box span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #FBBF24;
    /* Gold Amber */
    margin-bottom: 0;
    letter-spacing: 1px;
}

.core-quote-box p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
    word-break: keep-all;
}


/* --- TCI TEST PAGE STYLES --- */

/* Intro Section (Definition Cards) */
.tci-intro {
    padding: 40px 0 60px;
}

.tci-def-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0 auto;
}

.tci-def-card {
    background: #fff;
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-align: left;
    transition: transform 0.3s ease;
}

.tci-def-card:hover {
    transform: translateY(-5px);
}

.tci-def-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.temperament-icon {
    background-color: #f0fdf4;
    color: #16a34a;
}

.character-icon {
    background-color: #eff6ff;
    color: #2563eb;
}

.tci-def-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
}

.tci-def-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    word-break: keep-all;
}

.tci-def-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tci-tag {
    background: #f8fafc;
    color: #64748b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}


/* Dimensions Grid */
.tci-dimensions {
    padding: 60px 0;
    background: #f8fafc;
    border-radius: 40px;
    margin-bottom: 60px;
}

.tci-dimensions .section-title,
.tci-dimensions .section-desc {
    text-align: left;
    margin-left: 0;
}

.dimension-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0;
}

@media (max-width: 768px) {
    .dimension-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dimension-card {
        padding: 20px 10px !important;
    }

    .benefits-container {
        padding: 0 40px !important;
    }

    .tci-def-card {
        padding: 20px;
    }

    .comm-values-grid {
        grid-template-columns: 1fr !important;
    }
}

.dimension-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.dimension-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.card-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
}

.temperament .card-tag {
    background: #fee2e2;
    color: #991b1b;
}

.character .card-tag {
    background: #e0f2fe;
    color: #075985;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.dimension-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.dimension-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

/* Adjust for 3 Character cards in a 4-col grid */
.dimension-grid .character:nth-child(5) {
    grid-column: 1;
}

/* Benefits Section */
.tci-benefits {
    padding: 64px 0;
    background: #064e3b;
    border-radius: 40px;
    color: #fff;
    margin-bottom: 40px;
}

.benefits-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.tci-benefits h3 {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-num {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.8;
}

.benefit-item p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.benefit-item.highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    border-bottom: none;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item.highlight i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.benefit-item.highlight p {
    font-size: 1rem;
    font-weight: 600;
}

/* Process Section Refinement */
/* Process Section Refinement (Symmetrical 2-1-2) */
.tci-process-wrap {
    padding: 60px 0 100px;
    background: #fdfdfd;
}

.tci-process-wrap .section-title,
.tci-process-wrap .section-desc {
    text-align: center;
}

.tci-process-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    padding: 0 20px;
}

/* Central Pulse Line */
.tci-process-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
    opacity: 0.15;
    z-index: 1;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

/* Grid Layout Assignments */
.process-card:nth-child(1) {
    grid-column: 1;
    justify-self: end;
    width: 90%;
}

.process-card:nth-child(2) {
    grid-column: 2;
    justify-self: start;
    width: 90%;
}

.process-card:nth-child(3) {
    grid-column: 1 / span 2;
    justify-self: center;
    width: 320px;
    margin: 20px 0;
}

.process-card:nth-child(4) {
    grid-column: 1;
    justify-self: end;
    width: 90%;
}

.process-card:nth-child(5) {
    grid-column: 2;
    justify-self: start;
    width: 90%;
}

.process-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
    z-index: 10;
}

.process-step-num {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* Diverse Icon Colors */
.process-card:nth-child(1) .process-icon {
    background: #ecfdf5;
    color: #059669;
}

.process-card:nth-child(2) .process-icon {
    background: #eff6ff;
    color: #2563eb;
}

.process-card:nth-child(3) .process-icon {
    background: #fff7ed;
    color: #d97706;
}

.process-card:nth-child(4) .process-icon {
    background: #faf5ff;
    color: #9333ea;
}

.process-card:nth-child(5) .process-icon {
    background: #fff1f2;
    color: #e11d48;
}

.process-card:hover .process-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(5deg);
}

.process-info h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.process-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

/* Remove Arrows */
.process-arrow {
    display: none;
}

/* Highlight Central Card */
.highlight-card {
    background: #f0fdf4;
    border-color: #dcfce7;
    box-shadow: 0 15px 50px rgba(22, 163, 74, 0.1);
}

.highlight-card .process-icon {
    background: var(--secondary-color);
    color: #fff;
    animation: icon-pulse 2s infinite ease-in-out;
}

@keyframes icon-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .process-card:nth-child(n) {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 960px) {
    .reading-detail-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        counter-reset: reading-step;
    }

    .step-arrow {
        display: none;
    }

    .process-step {
        position: relative;
    }

    .process-step::after {
        counter-increment: reading-step;
        content: "0" counter(reading-step);
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 0.75rem;
        font-weight: 800;
        color: #94a3b8;
        opacity: 0.5;
    }

    .step-circle {
        width: 100%;
        height: 90px;
        border-radius: 25px;
        margin-bottom: 0;
    }

    .step-circle i {
        font-size: 1.4rem;
        margin-bottom: 3px;
    }

    .step-circle span {
        font-size: 0.95rem;
    }

    .reading-intro {
        padding: 40px 15px;
        border-radius: 30px;
    }

    .reading-intro-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-top: 15px;
        padding: 0 5px;
    }

    /* Hybrid Section Mobile */
    .hybrid-section {
        padding: 60px 0;
    }

    .hybrid-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hybrid-content .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .hybrid-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hybrid-visual {
        height: auto;
        margin-bottom: 40px;
    }

    .core-quote-box {
        position: relative;
        left: 20px;
        right: 20px;
        width: auto;
        bottom: auto;
        margin-top: -30px;
        max-width: none;
        padding: 25px;
        z-index: 5;
    }

    .core-quote-box p {
        font-size: 1rem;
    }

    .reading-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reading-card {
        padding: 30px 20px;
    }

    /* TCI Mobile Updates */
    .tci-def-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tci-process-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .tci-process-container::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .process-card:nth-child(n) {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .tci-benefits {
        padding: 40px 20px;
    }

    .core-quote-box {
        left: 20px;
        bottom: 20px;
        padding: 25px 30px;
        max-width: 85%;
    }

    .hybrid-item:hover {
        transform: none;
    }

    /* TCI Mobile Stack */
    .tci-process-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .tci-process-container::before {
        display: none;
    }

    .process-card {
        width: 100% !important;
        max-width: 100%;
        margin: 0 !important;
    }
}

/* --- COMMUNICATION PAGE STYLES --- */
.comm-system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.comm-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.comm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.comm-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.comm-icon-box.parent {
    background: #ecfdf5;
    color: #059669;
}

.comm-icon-box.child {
    background: #eff6ff;
    color: #2563eb;
}

.comm-icon-box.team {
    background: #faf5ff;
    color: #9333ea;
}

.comm-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
}

.comm-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    word-break: keep-all;
}

.comm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.comm-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}

.comm-list li i {
    color: var(--secondary-color);
    margin-top: 4px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .care-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .care-card {
        padding: 30px;
        text-align: left;
    }

    .care-section .section-title,
    .care-section .section-desc,
    .care-header {
        text-align: left !important;
        margin-left: 0 !important;
    }

    .care-desc {
        text-align: left;
        font-size: 1rem;
        line-height: 1.7;
    }

    .care-card h3,
    .care-card p {
        text-align: left;
    }
}

@media (max-width: 1100px) {
    .comm-system-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comm-card {
        padding: 40px 30px;
    }
}

/* Communication Commitment Section */
.comm-commitment {
    margin-top: 100px;
    background: #064e3b;
    /* Royal Green */
    border-radius: 50px;
    padding: 80px 40px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comm-commitment::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.commitment-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.commitment-quote {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    word-break: keep-all;
}

.commitment-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.comm-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.value-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* --- TEACHERS PAGE STYLES --- */
.teacher-pillars {
    margin-bottom: 100px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.pillar-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.pillar-icon-box.coach {
    background: #fff7ed;
    color: #d97706;
}

.pillar-icon-box.career {
    background: #eff6ff;
    color: #2563eb;
}

.pillar-icon-box.select {
    background: #ecfdf5;
    color: #059669;
}

.pillar-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-color);
}

.pillar-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    word-break: keep-all;
}

.pillar-stat {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Dual Care System */
.dual-care-wrap {
    background: #fff;
    padding: 80px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 60px;
}

.dual-care-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.care-role {
    flex: 1;
    max-width: 400px;
    background: #f8fafc;
    border-radius: 35px;
    padding: 40px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.care-role:hover {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.role-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.role-badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.care-role.assistant .role-badge {
    background: var(--secondary-color);
}

.role-header h4 {
    font-size: 1.5rem;
    font-weight: 800;
}

.role-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}

.role-content li i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 0.9rem;
}

.care-synergy {
    font-size: 2rem;
    color: #ddd;
    animation: synergy-pulse 2s infinite ease-in-out;
}

@keyframes synergy-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.director-oversight {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f0fdf4;
    padding: 30px 40px;
    border-radius: 30px;
    border: 1px solid #dcfce7;
}

.oversight-icon {
    font-size: 2.5rem;
    color: #16a34a;
}

.oversight-text strong {
    display: block;
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.oversight-text p {
    font-size: 1rem;
    color: #166534;
    font-weight: 600;
    word-break: keep-all;
}

@media (max-width: 960px) {
    .comm-commitment {
        padding: 60px 20px;
        margin-top: 60px;
    }

    .commitment-quote {
        font-size: 1.8rem;
    }

    .comm-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dual-care-container {
        flex-direction: column;
    }

    .care-synergy {
        transform: rotate(90deg);
    }

    .role-header h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 1100px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .dual-care-container {
        flex-direction: column;
    }

    .care-synergy {
        transform: rotate(90deg);
    }

    .role-header h4 {
        font-size: 1.3rem;
    }
}

/* --- CARE MANAGEMENT PAGE STYLES --- */
.care-process-section {
    background: linear-gradient(135deg, #edf5ef 0%, #e1edf9 100%);
    border-radius: 40px;
    padding: 56px 40px;
    margin-bottom: 100px;
}

.care-process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
    padding: 0 20px;
}

.care-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.5;
}

.step-icon {
    width: 74px;
    height: 74px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.care-step:hover .step-icon {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.care-step h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-color);
}

.care-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    word-break: keep-all;
}

.step-line {
    flex: 0 0 40px;
    height: 1px;
    background: #e5e7eb;
    margin-top: 52px;
}

/* Manual Cards */
.care-manual-section {
    margin-bottom: 80px;
}

.manual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.manual-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f8fafc;
    transition: all 0.4s ease;
}

.manual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    border-color: #e5e7eb;
}

.manual-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.manual-tag.emotional {
    background: #fff1f2;
    color: #e11d48;
}

.manual-tag.environment {
    background: #ecfdf5;
    color: #059669;
}

.manual-tag.emergency {
    background: #fef2f2;
    color: #dc2626;
}

.manual-icon {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.manual-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-color);
}

.manual-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    word-break: keep-all;
}

.manual-card p strong {
    color: var(--text-color);
    font-weight: 700;
}

/* Stability Footer */
.stability-footer {
    margin: 80px 0 40px;
    background: #f8fafc;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
}

.stability-box p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    word-break: keep-all;
}

.stability-box strong {
    color: var(--primary-color);
}

@media (max-width: 1100px) {
    .care-process-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 15px;
        padding: 0;
    }

    .care-step {
        width: 100%;
        padding: 0 5px;
    }

    .care-step .step-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .care-step h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .care-step p {
        font-size: 0.85rem;
    }

    .step-line {
        display: none;
    }

    .manual-grid {
        grid-template-columns: 1fr;
    }
}

/* --- INQUIRY PAGE STYLES --- */
.inquiry-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.inquiry-step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f8fafc;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inquiry-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.inquiry-step-card .step-icon-box {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Diverse Icon Colors */
.inquiry-step-card.step1 .step-icon-box {
    background: #eff6ff;
    color: #2563eb;
}

.inquiry-step-card.step2 .step-icon-box {
    background: #fff7ed;
    color: #d97706;
}

.inquiry-step-card.step3 .step-icon-box {
    background: #fdf2f8;
    color: #db2777;
}

.inquiry-step-card.step4 .step-icon-box {
    background: #ecfdf5;
    color: #059669;
}

.inquiry-step-card .step-no {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.inquiry-step-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.inquiry-step-card p {
    font-size: 0.95rem;
    color: #888;
}

/* Main Layout: Form & Sidebar */
.inquiry-main-row {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 100px;
}

.inquiry-form-container {
    background: #fff;
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-title::before {
    content: '';
    width: 5px;
    height: 28px;
    background: var(--secondary-color);
    border-radius: 10px;
}

.premium-inquiry-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.form-group label span {
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 25px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    background: #f9fafb;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 66, 37, 0.05);
    outline: none;
}

.form-group textarea {
    height: 180px;
    resize: none;
    line-height: 1.6;
}

.form-agreement {
    margin-top: 30px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 15px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-wrap input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.checkbox-wrap label {
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
}

.inquiry-submit-btn {
    width: 100%;
    padding: 22px;
    background: #064e3b;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 40px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 66, 37, 0.2);
    transition: all 0.3s ease;
}

.inquiry-submit-btn:hover {
    background: #005a32;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 66, 37, 0.3);
}

/* Sidebar Styling */
.inquiry-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.premium-care-card {
    background: #f0fdf4;
    padding: 35px 30px;
    border-radius: 40px;
    border: 1px solid #d1fae5;
}

.premium-care-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #16a34a;
}

.premium-care-card .card-header i {
    font-size: 1.3rem;
}

.premium-care-card .card-header h4 {
    font-size: 1.15rem;
    font-weight: 800;
}

.premium-care-card .card-desc {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
    word-break: keep-all;
}

.care-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 10px;
    font-weight: 600;
}

.care-features li i {
    font-size: 0.85rem;
    color: #16a34a;
}

.direct-call-card {
    background: #111827;
    padding: 35px 30px;
    border-radius: 40px;
    color: #fff;
}

.direct-call-card h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.direct-call-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 25px;
    word-break: keep-all;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.call-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.call-info span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
    letter-spacing: 1px;
}

.call-info strong {
    font-size: 1.2rem;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .inquiry-main-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .inquiry-steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .inquiry-form-container {
        padding: 30px 20px;
    }

    .premium-inquiry-form .form-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 20px;
    }

    .faq-question .question-text {
        font-size: 1rem;
    }

    .answer-content {
        padding: 25px 20px;
    }
}

/* --- FAQ PAGE STYLES --- */
.faq-list-container {
    margin: 40px 0 100px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #e2e6eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #cbd5e1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question .q-icon {
    font-size: 1rem;
    font-weight: 900;
    color: var(--secondary-color);
    width: 30px;
}

.faq-question .question-text {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    word-break: keep-all;
}

.faq-question .toggle-icon {
    font-size: 0.9rem;
    color: #cbd5e1;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    background: #fcfdfd;
    border-top: 1px solid #f8fafc;
}

.answer-content {
    padding: 30px 30px 30px 80px;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    word-break: keep-all;
}

.answer-content a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

/* FAQ Support Section */
.faq-support-section {
    margin: 0 0 100px;
    text-align: center;
    border: 1px solid #f1f5f9;
    padding: 60px 40px;
    background: linear-gradient(135deg, #edf5ef 0%, #e1edf9 100%);
    border-radius: 40px;
    margin-bottom: 60px;
}

.support-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
}

.support-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

.support-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 800;
    transition: all 0.3s ease;
    text-decoration: none;
}

.support-btn.phone {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.support-btn.online {
    background: var(--primary-color);
    color: #fff;
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        gap: 15px;
    }

    .faq-question .question-text {
        font-size: 1rem;
    }

    .answer-content {
        padding: 20px 20px 20px 55px;
        font-size: 0.95rem;
    }

    .faq-support-section {
        padding: 50px 25px;
    }

    .support-actions {
        flex-direction: column;
    }

    .support-btn {
        justify-content: center;
    }
}

/* About SCE Page - Excellence Section Mobile Fix */
@media (max-width: 1024px) {
    .excellence-section .container {
        gap: 0;
    }

    .about-env-section {
        flex-direction: column;
        margin-bottom: 80px;
    }

    .env-image-box {
        width: 100%;
        aspect-ratio: 5 / 4;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .env-image-box {
        width: 100%;
        aspect-ratio: 5 / 4;
        border-radius: 30px;
    }

    .env-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .excellence-section {
        padding: 50px 30px;
    }

    .excellence-header {
        border-right: none;
        margin-bottom: 40px;
    }

    .excellence-header h2 {
        font-size: 1.6rem;
    }

    .excellence-item h4 {
        font-size: 1.2rem;
    }

    .excellence-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .env-overlay h4 {
        font-size: 1.5rem;
    }

    .env-feature-card {
        padding: 30px 25px;
    }

    .env-feature-card h4 {
        font-size: 1.3rem;
    }

    .env-feature-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .excellence-grid {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
}

/* Fullpage.js Navigation Customization (Homepage Only) */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: rgba(212, 175, 55, 0.3);
    /* Metallic Gold transparent */
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    background: var(--secondary-color);
    /* Metallic Gold */
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    background: var(--secondary-color);
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
}

#fp-nav ul li .fp-tooltip {
    font-family: var(--font-body);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

/* Footer section in fullpage */
.fp-auto-height-responsive {
    height: auto !important;
}

.fp-auto-height-responsive footer {
    margin-top: 0;
}

/* Background Animated Objects - Desktop Only (Bold & Vibrant) */
@media (min-width: 1025px) {

    /* 1. Leadership Section - Vibrant Floating Shapes */
    .leadership-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    }

    .leadership-section .bg-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }

    .leadership-section .shape {
        position: absolute;
    }

    /* Large vibrant gradient circles */
    .leadership-section .shape-1 {
        width: 550px;
        height: 550px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(252, 211, 77, 0.25));
        top: -180px;
        right: -120px;
        animation: floatRotate1 20s ease-in-out infinite, colorShift1 15s ease-in-out infinite;
        filter: blur(30px);
    }

    .leadership-section .shape-2 {
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: linear-gradient(225deg, rgba(59, 130, 246, 0.3), rgba(147, 197, 253, 0.25));
        bottom: -120px;
        left: -120px;
        animation: floatRotate2 18s ease-in-out infinite, colorShift2 12s ease-in-out infinite;
        filter: blur(25px);
    }

    .leadership-section .shape-3 {
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 43, 25, 0.25), rgba(16, 185, 129, 0.15));
        top: 25%;
        left: 8%;
        animation: pulse 12s ease-in-out infinite, drift 25s ease-in-out infinite;
        filter: blur(20px);
    }

    /* Additional accent shapes */
    .leadership-section .bg-shapes::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: linear-gradient(180deg, rgba(251, 146, 60, 0.25), rgba(252, 211, 77, 0.2));
        top: 50%;
        right: 15%;
        animation: bounce 10s ease-in-out infinite;
        filter: blur(20px);
    }

    .leadership-section .bg-shapes::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
        bottom: 20%;
        left: 20%;
        animation: float 15s ease-in-out infinite;
        filter: blur(15px);
    }

    @keyframes floatRotate1 {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg) scale(1);
        }

        25% {
            transform: translate(-150px, 150px) rotate(90deg) scale(1.2);
        }

        50% {
            transform: translate(-250px, -150px) rotate(180deg) scale(0.85);
        }

        75% {
            transform: translate(150px, -250px) rotate(270deg) scale(1.15);
        }
    }

    @keyframes floatRotate2 {

        0%,
        100% {
            transform: translate(0, 0) scale(1) rotate(0deg);
        }

        33% {
            transform: translate(200px, -200px) scale(1.3) rotate(120deg);
        }

        66% {
            transform: translate(-200px, 200px) scale(0.75) rotate(240deg);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.25;
        }

        50% {
            transform: scale(1.6);
            opacity: 0.4;
        }
    }

    @keyframes drift {

        0%,
        100% {
            transform: translate(0, 0);
        }

        50% {
            transform: translate(200px, 200px);
        }
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-120px) scale(1.3);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg);
        }

        33% {
            transform: translate(80px, -80px) rotate(120deg);
        }

        66% {
            transform: translate(-80px, 80px) rotate(240deg);
        }
    }

    @keyframes colorShift1 {

        0%,
        100% {
            filter: blur(30px) hue-rotate(0deg) brightness(1);
        }

        50% {
            filter: blur(30px) hue-rotate(60deg) brightness(1.3);
        }
    }

    @keyframes colorShift2 {

        0%,
        100% {
            filter: blur(25px) hue-rotate(0deg) brightness(1);
        }

        50% {
            filter: blur(25px) hue-rotate(-60deg) brightness(1.25);
        }
    }

    .leadership-section .container {
        position: relative;
        z-index: 1;
    }

    /* 3. Care Section - Bold Gradient Waves */
    .care-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #fafafa 0%, #e5e7eb 20%, #f3f4f6 50%, #e5e7eb 80%, #fafafa 100%);
    }

    .care-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }

    /* Large vibrant orbs */
    .care-bg-pattern::before {
        content: '';
        position: absolute;
        width: 650px;
        height: 650px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.4), rgba(252, 211, 77, 0.25) 40%, transparent 70%);
        top: -250px;
        left: -250px;
        animation: orbPulse1 25s ease-in-out infinite;
        filter: blur(40px);
    }

    .care-bg-pattern::after {
        content: '';
        position: absolute;
        width: 580px;
        height: 580px;
        border-radius: 50%;
        background: radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.35), rgba(5, 150, 105, 0.2) 40%, transparent 70%);
        bottom: -220px;
        right: -220px;
        animation: orbPulse2 22s ease-in-out infinite;
        filter: blur(35px);
    }

    /* Rotating wave gradient */
    .care-section::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
        background: linear-gradient(60deg, transparent 25%, rgba(59, 130, 246, 0.12) 45%, rgba(147, 197, 253, 0.08) 55%, transparent 75%);
        animation: waveMove 20s linear infinite;
        z-index: 0;
    }

    /* Additional accent */
    .care-section::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 60%);
        top: 40%;
        right: 10%;
        animation: floatSlow 25s ease-in-out infinite;
        filter: blur(30px);
        z-index: 0;
    }

    @keyframes orbPulse1 {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        25% {
            transform: translate(200px, 200px) scale(1.35);
        }

        50% {
            transform: translate(300px, -150px) scale(0.85);
        }

        75% {
            transform: translate(-150px, 250px) scale(1.25);
        }
    }

    @keyframes orbPulse2 {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        33% {
            transform: translate(-180px, -180px) scale(1.3);
        }

        66% {
            transform: translate(150px, 150px) scale(0.8);
        }
    }

    @keyframes waveMove {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes floatSlow {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg);
        }

        50% {
            transform: translate(-120px, 120px) rotate(180deg);
        }
    }

    .care-section .container {
        position: relative;
        z-index: 1;
    }

    /* 4. Story Section - Dynamic Morphing Blobs */
    .story-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(to bottom, #ffffff 0%, #f0f9ff 40%, #e0f2fe 60%, #f0f9ff 100%);
    }

    /* Large morphing blobs */
    .story-section::before {
        content: '';
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        background: linear-gradient(135deg, rgba(251, 146, 60, 0.35), rgba(252, 211, 77, 0.25), rgba(147, 197, 253, 0.2));
        top: 0%;
        right: -5%;
        animation: blobMove1 25s ease-in-out infinite, blobMorph 10s ease-in-out infinite;
        filter: blur(25px);
        z-index: 0;
    }

    .story-section::after {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        background: linear-gradient(225deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.25), rgba(212, 175, 55, 0.2));
        bottom: 5%;
        left: 0%;
        animation: blobMove2 22s ease-in-out infinite, blobMorph2 12s ease-in-out infinite;
        filter: blur(20px);
        z-index: 0;
    }

    @keyframes blobMove1 {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg);
        }

        33% {
            transform: translate(-120px, 120px) rotate(120deg);
        }

        66% {
            transform: translate(120px, -120px) rotate(240deg);
        }
    }

    @keyframes blobMove2 {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        50% {
            transform: translate(150px, -150px) scale(1.3);
        }
    }

    @keyframes blobMorph {

        0%,
        100% {
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        }

        25% {
            border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
        }

        50% {
            border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
        }

        75% {
            border-radius: 45% 55% 60% 40% / 55% 45% 60% 40%;
        }
    }

    @keyframes blobMorph2 {

        0%,
        100% {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }

        33% {
            border-radius: 30% 70% 60% 40% / 40% 60% 30% 70%;
        }

        66% {
            border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        }
    }

    .story-section .container {
        position: relative;
        z-index: 1;
    }
}

/* Floating Menu System */
.floating-menu {
    position: fixed;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .floating-menu {
        bottom: 40px;
        right: 40px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }

    .floating-menu.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .float-item {
        width: 60px;
        height: 60px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        color: var(--primary-color);
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .float-item:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 66, 37, 0.3);
    }

    .float-item .icon-box {
        font-size: 1.4rem;
    }

    .float-item .label {
        position: absolute;
        right: 75px;
        background: #333;
        color: #fff;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
        font-weight: 500;
        pointer-events: none;
    }

    .float-item .label::after {
        content: '';
        position: absolute;
        right: -4px;
        top: 50%;
        transform: translateY(-50%);
        border-left: 4px solid #333;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
    }

    .float-item:hover .label {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .float-item.top-btn {
        background: var(--secondary-color);
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .float-item.top-btn:hover {
        background: #e5b92e;
    }

    .mobile-only,
    .mobile-cta {
        display: none !important;
    }
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .floating-menu {
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        transform: translateY(100%);
    }

    .floating-menu.visible {
        transform: translateY(0);
    }

    .float-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #999;
        text-decoration: none;
        font-size: 10px;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 2px 0;
        cursor: pointer;
        font-weight: 500;
    }

    .float-item:hover {
        transform: none;
        box-shadow: none;
        background: transparent;
    }

    .float-item .icon-box {
        font-size: 1.25rem;
        color: #444;
        transition: color 0.3s;
        margin-bottom: 2px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .float-item.top-btn {
        background: transparent;
        color: #999;
        border: none;
    }

    .float-item.inquiry .icon-box {
        color: var(--primary-color);
    }

    .float-item.inquiry .label {
        color: #999;
        font-weight: 500;
    }

    .float-item.call .icon-box {
        color: #333;
    }

    .float-item.top-btn .icon-box {
        color: #444;
    }

    /* Global Mobile Hover Disable */
    *:hover {
        transform: none !important;
        /* box-shadow: none !important; */
        transition-duration: 0s !important;
    }

    .bar-info:hover {
        transform: translateX(-50%) !important;
    }

}

/* Facility Page Styles */
.facility-section {
    padding-bottom: 80px;
    position: relative;
}

.facility-section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 66, 37, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.facility-section-title::after {
    content: '01 - 06';
    font-size: 1rem;
    color: #ccc;
    font-weight: 500;
    font-family: var(--font-heading);
}

.outdoor-title::after {
    content: '01 - 03';
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}

.facility-card {
    background: transparent;
}

.facility-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 16/10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-img img {
    transform: scale(1.08);
}

.facility-num {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.facility-info {
    padding: 0 5px;
}

.facility-tag {
    display: inline-block;
    color: #D98C4C;
    /* Orange/Gold from screenshot */
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.facility-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.3;
}

.facility-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.65;
    word-break: keep-all;
}

/* Outdoor Specifics */
.facility-section.outdoor {
    margin-top: 50px;
}


.facility-tag-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    color: #2e8b57;
    /* Green for outdoor tags */
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.outdoor .facility-tag {
    color: #2e8b57;
}

/* Standards Section */
.standards-section {
    background-color: #012D22;
    /* Deep Green */
    color: #fff;
    padding: 100px 0;
    margin-top: 80px;
    border-radius: 60px 60px 0 0;
    position: relative;
    overflow: hidden;
}

.standards-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.standards-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.standards-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    font-weight: 300;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.standard-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.standard-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.standard-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.standard-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.standard-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr;
    }

    .standards-grid {
        grid-template-columns: 1fr;
    }

    .standards-section {
        border-radius: 30px 30px 0 0;
        padding: 60px 0;
    }


    /* SR Style Standards Section */
    .sr-intro-section {
        padding: 100px 0;
        background-color: #fff;
    }

    .sr-intro-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .sr-intro-desc {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-top: 20px;
        word-break: keep-all;
    }

    .sr-key-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .sr-key-card {
        background: #f8fafc;
        padding: 40px 30px;
        border-radius: 24px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #f1f5f9;
    }

    .sr-key-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        background: #fff;
        border-color: var(--primary-color);
    }

    .sr-key-icon {
        width: 70px;
        height: 70px;
        background: #e0f2f1;
        /* Light teal/green tint */
        color: var(--primary-color);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 25px;
        transition: all 0.3s;
    }

    .sr-key-card:hover .sr-key-icon {
        background: var(--primary-color);
        color: #fff;
    }

    .sr-key-card h4 {
        font-size: 1.25rem;
        color: #111;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .sr-key-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        word-break: keep-all;
    }

    @media (max-width: 1024px) {
        .sr-key-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .sr-key-grid {
            grid-template-columns: 1fr;
        }
    }
}