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

html {
    height: 100%;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main, section {
    flex: 1;
}

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

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

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.logo img {
    height: 120px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    align-items: center;
}

.nav-link {
    color: #333;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: 6px;
    position: relative;
    display: inline-block;
}

.nav-link:hover {
    color: #1a7c7d;
    background-color: #fff;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #1a7c7d;
    background-color: rgba(26, 124, 125, 0.12);
    border-bottom: 2px solid #1a7c7d;
}

.hamburger {
    display: none;
}

.nav-mobile-right {
    display: none;
}

.search-box {
    display: flex;
}

.search-box input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    font-size: 14px;
}

.search-box input::placeholder {
    color: #999;
}

/* Hero Section */
.hero {
    background-color: #e8e8e8;
    padding: 80px 20px 40px 20px;
    text-align: center;
}

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

.hero-content h1 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.35;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h2.hero-subtitle {
    margin-bottom: 35px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #1a7c7d;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Georgia', 'Garamond', serif;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #1a7c7d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #15676a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 124, 125, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(26, 124, 125, 0.3);
}

.btn-primary:focus {
    outline: 2px solid #1a7c7d;
    outline-offset: 2px;
}

/* Three Pillars Section */
.pillars {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 400;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

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

.pillar {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pillar h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #007bff;
    font-weight: 700;
}

.pillar p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

/* Approach Section */
.approach-section {
    padding: 40px 20px 80px 20px;
    background-color: #f5f5f5;
}

.approach-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 35px;
    color: #2c3e50;
    font-weight: 400;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.approach-card {
    text-align: center;
    border: 2px solid #2c3e50;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.approach-card:hover {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #1a7c7d;
}

.approach-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.approach-card:hover h3 {
    color: #1a7c7d;
}

.approach-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-cta {
    text-align: center;
}

/* Why Section */
.why-section {
    padding: 40px 20px 80px 20px;
    background-color: #e8e8e8;
    text-align: center;
}

.why-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.why-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Georgia', 'Garamond', serif;
}

.why-highlight {
    font-size: 2rem;
    color: #1a7c7d;
    font-weight: 400;
    line-height: 1.8;
    font-family: 'Georgia', 'Garamond', serif;
    margin-bottom: 30px;
}

.why-cta {
    text-align: center;
}

.highlight-text {
    font-style: italic;
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 40px 20px 60px 20px;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-title {
    font-size: 2.8rem;
    color: #1a7c7d;
    margin-bottom: 45px;
    font-weight: 400;
    text-align: center;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    font-family: 'Georgia', 'Garamond', serif;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.highlight-brand {
    font-style: italic;
}

/* Who Section */
.who-section {
    padding: 30px 20px 80px 20px;
    background-color: #f5f5f5;
}

.who-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.who-title {
    font-size: 2.8rem;
    color: #1a7c7d;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.who-intro {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
    width: 100%;
    font-family: 'Georgia', 'Garamond', serif;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    width: 100%;
    align-items: stretch;
}

.who-column {
    text-align: left;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.who-list li {
    font-size: 1.15rem;
    color: #333;
    padding-left: 0;
    position: relative;
    line-height: 1.6;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.who-list li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #1a7c7d;
    font-size: 1.2rem;
    font-weight: bold;
}

.who-benefit {
    font-size: 1.15rem;
    color: #1a7c7d;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.8;
    max-width: 1000px;
    width: 100%;
    font-family: 'Georgia', 'Garamond', serif;
}

.who-cta {
    text-align: center;
}

.who-cta {
    text-align: center;
    width: 100%;
}

/* Program Section */
.program-section {
    padding: 30px 20px;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-title {
    font-size: 2.8rem;
    color: #1a7c7d;
    margin-bottom: 45px;
    font-weight: 400;
    text-align: center;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.program-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    font-family: 'Georgia', 'Garamond', serif;
}

.program-content p:last-child {
    margin-bottom: 0;
}

/* Included Section */
.included-section {
    padding: 15px 20px;
    background-color: #f5f5f5;
}

.included-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.included-title {
    font-size: 2.8rem;
    color: #1a7c7d;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    max-width: 900px;
    width: 100%;
    align-items: stretch;
}

.included-column {
    text-align: left;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.included-list li {
    font-size: 1.15rem;
    color: #333;
    padding-left: 0;
    position: relative;
    line-height: 1.6;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.included-list li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #1a7c7d;
    font-size: 1.2rem;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 15px 20px;
    background-color: #f5f5f5;
}

.faq-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    font-size: 2.8rem;
    color: #1a7c7d;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.faq-container {
    width: 100%;
    max-width: 900px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    overflow: hidden;
}

.faq-header {
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-header:hover {
    background-color: #f0f0f0;
}

.faq-icon {
    color: #1a7c7d;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-question {
    color: #1a7c7d;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Georgia', 'Garamond', serif;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Program CTA Section */
.program-cta-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.program-apply-cta {
    text-align: center;
}

/* Apply Section */
.apply-section {
    padding: 30px 20px 80px 20px;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-title {
    font-size: 2.8rem;
    color: #1a7c7d;
    margin-bottom: 45px;
    font-weight: 400;
    text-align: center;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

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

.apply-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: 'Georgia', 'Garamond', serif;
    font-weight: 500;
}

.apply-tagline {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
    font-family: 'Georgia', 'Garamond', serif;
    font-weight: 500;
}

.highlight-italic {
    font-style: italic;
    font-weight: 400;
}

.apply-button-container {
    margin-bottom: 45px;
}

.apply-info {
    margin-top: 45px;
}

.apply-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.apply-info p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 30px 20px 80px 20px;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title {
    font-size: 2.8rem;
    color: #1a7c7d;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.contact-intro:last-of-type {
    margin-bottom: 45px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 45px;
    max-width: 1000px;
    width: 100%;
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    background-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #1a7c7d;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(26, 124, 125, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background-color: rgba(26, 124, 125, 0.2);
    transform: scale(1.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: #1a7c7d;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: -0.5px;
}

.contact-card:hover h3 {
    color: #1a7c7d;
}

.contact-link {
    color: #1a7c7d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.contact-link:hover {
    text-decoration: underline;
    color: #15676a;
}

.contact-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-note {
    text-align: center;
    padding: 30px;
    background-color: rgba(26, 124, 125, 0.08);
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-note p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Old Approach Section */
.approach {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.approach h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach p.highlight {
    font-weight: 600;
    font-size: 1.2rem;
    color: #007bff;
    margin-top: 30px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 45px 20px 20px;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 150px;
    width: auto;
}

.footer-content {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ddd;
}

.footer-section a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-icon-link:hover {
    color: #1a7c7d;
    transform: scale(1.1);
}

.footer-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #1a7c7d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #1a7c7d;
    text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-mobile-right {
    display: none;
    align-items: center;
    gap: 25px;
}

.current-page {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a7c7d;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-mobile-right {
        display: flex;
    }

    .nav-container {
        flex-wrap: nowrap;
        gap: 0;
        padding: 15px 10px;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        flex: 1;
    }

    .logo img {
        height: 60px;
    }

    .hamburger {
        flex-shrink: 0;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        align-items: stretch;
        border-top: 1px solid #ddd;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid #eee;
        display: block;
        text-align: left;
        transition: background-color 0.3s ease;
        width: 100%;
    }

    .nav-link:hover {
        background-color: rgba(26, 124, 125, 0.05);
        transform: none;
    }

    .nav-link.active {
        background-color: rgba(26, 124, 125, 0.12);
        border-left: 4px solid #1a7c7d;
        padding-left: 16px;
    }

    .navbar {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .search-box {
        display: none;
    }

    .btn {
        padding: 12px 40px;
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .approach h2 {
        font-size: 1.8rem;
    }

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

    .approach-grid {
        gap: 30px;
    }

    .approach-card {
        padding: 30px 20px;
    }

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

    .why-description {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    .why-highlight {
        font-size: 1.1rem;
    }

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

    .about-content p {
        font-size: 1rem;
    }

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

    .who-intro {
        font-size: 1rem;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .who-benefit {
        font-size: 1rem;
        margin-bottom: 40px;
    }

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

    .program-content p {
        font-size: 1rem;
    }

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

    .included-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 20px;
    }

    .included-list li {
        font-size: 0.95rem;
    }

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

    .faq-header {
        padding: 16px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-content p {
        font-size: 0.95rem;
        padding: 0 16px 16px 16px;
    }

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

    .apply-intro {
        font-size: 1.1rem;
    }

    .apply-tagline {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .apply-info p {
        font-size: 0.95rem;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-icon-link {
        width: 40px;
        height: 40px;
    }

    .footer-icon {
        width: 20px;
        height: 20px;
    }

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

    .contact-intro {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }
}
