:root {
    --primary: #FF9E00;
    --secondary: #FFF8E1;
    --accent: #FFD60A;
    --background: #FFFFFF;
    --surface: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --contrast-blue: #00A8E8;
    --contrast-teal: #00CEC9;
    --contrast-purple: #A56EFF;
    --contrast-pink: #FF6B9D;
    --contrast-green: #00D9A3;
    --border-radius: 1.5rem;
    --shadow: 0 6px 15px rgba(255, 158, 0, 0.06);
    --shadow-colorful: 0 8px 25px rgba(0, 168, 232, 0.15);
}

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

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: var(--shadow);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover::after {
    width: 100%;
}

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

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 158, 0, 0.2);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
    background: #FF8800;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background-image: url('../images/hero-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left {
    flex: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 158, 0, 0.15);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    animation: fadeInLeft 0.6s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    padding-left: 1rem;
    border-left: 4px solid var(--primary);
    animation: fadeInLeft 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInLeft 0.8s ease-out 0.6s backwards;
}

.btn-primary-hero {
    background: var(--primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
    display: inline-block;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
    background: #FF8800;
}

.btn-secondary-hero {
    background: white;
    color: var(--text);
    padding: 1.2rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
}

.btn-secondary-hero:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 280px;
}

.stat-card {
    background: white;
    padding: 2rem 2rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInRight 0.8s ease-out backwards;
    cursor: pointer;
}

.stat-card:nth-child(1) {
    animation-delay: 0.4s;
    border-left: 4px solid var(--primary);
}

.stat-card:nth-child(2) {
    animation-delay: 0.6s;
    border-left: 4px solid var(--contrast-green);
}

.stat-card:nth-child(3) {
    animation-delay: 0.8s;
    border-left: 4px solid var(--contrast-blue);
}

.stat-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-content {
    flex: 1;
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.stat-orange .stat-label::after {
    background: var(--primary);
}

.stat-green .stat-label::after {
    background: var(--contrast-green);
}

.stat-blue .stat-label::after {
    background: var(--contrast-blue);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Challenge & Solution Section */
.challenge-solution-section {
    padding: 6rem 2rem;
    background: #F5F5EB;
}

.challenge-solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

.challenge-solution-main-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.challenge-solution-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.challenge-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.challenge-solution-card {
    background: #FFF8E1;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    border: 3px solid #FFE0A3;
}

.challenge-solution-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Challenge Part */
.challenge-part {
    padding: 2rem 1.5rem 1.5rem;
    background: white;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.challenge-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: #FFD60A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text);
    box-shadow: 0 2px 10px rgba(255, 214, 10, 0.3);
}

.challenge-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin: 0.5rem 0 1.5rem 0;
    padding-top: 2.5rem;
    line-height: 1.6;
}

.challenge-image {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Solution Part */
.solution-part {
    padding: 1.5rem 1.5rem 2rem;
    background: #FFF8E1;
}

.solution-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

/* GEM Badge Outside */
.gem-badge-outside {
    text-align: center;
    padding: 3rem 1rem;
}

.gem-badge-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.gem-badge-icon-left,
.gem-badge-icon-right {
    flex-shrink: 0;
}

.gem-badge-text-large {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.03em;
    margin: 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.gem-badge-text-large::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF9E00, transparent);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: white;
}

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

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #F0F0F0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #F5F5F5;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    position: relative;
}

.placeholder-text {
    font-size: 1.2rem;
    color: #999;
    font-weight: 600;
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #FF8800;
    transform: translateX(5px);
}

/* Column Section */
.column-section {
    padding: 6rem 2rem;
    background: #FAFAFA;
}

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

.column-header {
    text-align: center;
    margin-bottom: 4rem;
}

.column-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.column-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.column-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #F0F0F0;
}

.column-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.column-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
}

.column-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.column-content {
    padding: 2rem;
}

.column-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.column-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.column-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.column-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.column-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-column-list {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-column-list:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

/* Latest News Section */
.latest-news-section {
    padding: 6rem 2rem;
    background: white;
}

.latest-news-container {
    max-width: 1000px;
    margin: 0 auto;
}

.latest-news-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.latest-news-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FF9E00;
}

.latest-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
}

.latest-news-item {
    display: grid;
    grid-template-columns: 120px 150px 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E0E0E0;
    text-decoration: none;
    transition: background 0.3s ease;
}

.latest-news-item:hover {
    background: #FFF8F0;
}

.latest-news-date {
    font-size: 0.95rem;
    color: #333333;
    font-weight: 600;
}

.latest-news-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 0.9rem;
    background: #FF9E00;
    color: white;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.latest-news-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.6;
}

.latest-news-cta {
    text-align: center;
    margin-top: 3rem;
}

.latest-news-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #FF9E00;
    border: 2px solid #FF9E00;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.latest-news-button:hover {
    background: #FF9E00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: white;
}

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

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #F0F0F0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.service-image {
    width: 100%;
    height: 220px;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F0F0 0%, #E0E0E0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
}

.placeholder-text {
    font-size: 1.2rem;
    color: #999;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.5rem;
    color: #FF8800;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--background);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

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

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
    position: relative;
    border-top: 4px solid var(--primary);
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
    border-top-color: #FF9E00;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
    border-top-color: var(--contrast-blue);
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
    border-top-color: var(--contrast-green);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 158, 0, 0.2);
}

.service-card:nth-child(1):hover {
    box-shadow: 0 15px 40px rgba(255, 158, 0, 0.25);
}

.service-card:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.25);
}

.service-card:nth-child(3):hover {
    box-shadow: 0 15px 40px rgba(0, 217, 163, 0.25);
}

.service-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary), var(--surface));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.service-icon {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 2rem;
    background: #FAFAFA;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 158, 0, 0.15);
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-text {
    animation: fadeInRight 0.6s ease-out;
}

.reasons-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 158, 0, 0.15);
}

.reason-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.reason-item:nth-child(1) .reason-icon {
    background: linear-gradient(135deg, #FF9E00, #FFD60A);
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.reason-item:nth-child(2) .reason-icon {
    background: linear-gradient(135deg, var(--contrast-blue), var(--primary));
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.reason-item:nth-child(3) .reason-icon {
    background: linear-gradient(135deg, #FF9E00, var(--contrast-green));
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.reason-item:nth-child(4) .reason-icon {
    background: linear-gradient(135deg, var(--primary), #FF8800);
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.reason-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Schools Section */
.schools {
    padding: 6rem 2rem;
    background: var(--background);
}

.schools-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.school-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
}

.school-card:nth-child(1) {
    border-left-color: #FF9E00;
}

.school-card:nth-child(2) {
    border-left-color: var(--contrast-blue);
}

.school-card:nth-child(3) {
    border-left-color: #FFD60A;
}

.school-card:nth-child(4) {
    border-left-color: var(--contrast-green);
}

.school-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 158, 0, 0.15);
}

.school-card:nth-child(1):hover {
    box-shadow: 0 15px 40px rgba(255, 158, 0, 0.2);
}

.school-card:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.2);
}

.school-card:nth-child(3):hover {
    box-shadow: 0 15px 40px rgba(255, 214, 10, 0.2);
}

.school-card:nth-child(4):hover {
    box-shadow: 0 15px 40px rgba(0, 217, 163, 0.2);
}

.school-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--surface));
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.school-content {
    padding: 1.5rem;
}

.school-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.school-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.school-info {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* News Section */
.news {
    padding: 6rem 2rem;
    background: #FAFAFA;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 158, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--secondary), var(--surface));
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: white;
    background: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
}

.news-card:nth-child(1) .news-date {
    background: linear-gradient(135deg, #FF9E00, #FFD60A);
}

.news-card:nth-child(2) .news-date {
    background: linear-gradient(135deg, var(--contrast-blue), var(--primary));
}

.news-card:nth-child(3) .news-date {
    background: linear-gradient(135deg, #FF9E00, var(--contrast-green));
}

.news-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 214, 10, 0.2);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #FFF8E1;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #2C3E50;
    color: white;
    padding: 4rem 2rem 2rem;
}

/* Breadcrumb */
.breadcrumb {
    background: #F5F5F5;
    padding: 1rem 2rem;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
    color: #FF9E00;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FF9E00;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FF9E00;
    padding-left: 5px;
}

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

/* Responsive */
@media (max-width: 968px) {
    .header-content {
        flex-wrap: wrap;
    }

    nav {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-left {
        max-width: 100%;
    }

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

    .hero-right {
        width: 100%;
        max-width: 400px;
    }

    .challenge-solution-main-title {
        font-size: 1.8rem;
    }

    .challenge-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .challenge-part {
        min-height: 280px;
        padding: 2rem 1.5rem 1.5rem;
    }

    .challenge-title {
        padding-top: 2rem;
    }

    .solution-part {
        padding: 1.2rem 1.5rem 1.8rem;
    }

    .gem-badge-decoration {
        gap: 1rem;
    }

    .gem-badge-icon-left,
    .gem-badge-icon-right {
        width: 32px;
        height: 32px;
    }

    .gem-badge-text-large {
        font-size: 1.6rem;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image {
        height: 200px;
    }

    .column-title {
        font-size: 2rem;
    }

    .column-subtitle {
        font-size: 1rem;
    }

    .column-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .column-image {
        height: 180px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .schools-grid {
        grid-template-columns: 1fr;
    }

    .latest-news-item {
        grid-template-columns: 100px 130px 1fr;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .latest-news-date {
        font-size: 0.9rem;
    }

    .latest-news-label {
        height: 26px;
        padding: 0 0.75rem;
        font-size: 0.8rem;
    }

    .latest-news-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .logo {
        font-size: 1rem;
    }

    .logo span {
        display: none;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

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

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

    .challenge-solution-main-title {
        font-size: 1.5rem;
    }

    .challenge-part {
        padding: 1.5rem 1rem 1.2rem;
        min-height: 240px;
    }

    .challenge-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 1rem;
        left: 1rem;
    }

    .challenge-title {
        font-size: 1rem;
        padding-top: 1.5rem;
    }

    .solution-part {
        padding: 1rem 1rem 1.5rem;
    }

    .solution-text {
        font-size: 0.85rem;
    }

    .gem-badge-outside {
        padding: 2rem 0.5rem;
    }

    .gem-badge-decoration {
        flex-direction: column;
        gap: 0.8rem;
    }

    .gem-badge-icon-left {
        order: 1;
    }

    .gem-badge-text-large {
        font-size: 1.3rem;
        order: 2;
    }

    .gem-badge-icon-right {
        display: none;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .column-title {
        font-size: 1.8rem;
    }

    .column-card-title {
        font-size: 1.1rem;
    }

    .column-description {
        font-size: 0.85rem;
    }

    .column-image {
        height: 160px;
    }

    .btn-column-list {
        width: 100%;
        padding: 1rem 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-hero,
    .btn-secondary-hero,
    .btn-white,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .stat-card {
        padding: 1.2rem 1.5rem;
    }

    .latest-news-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .latest-news-date {
        font-size: 0.85rem;
    }

    .latest-news-label {
        height: 26px;
        width: fit-content;
    }

    .latest-news-text {
        font-size: 0.95rem;
    }
}
