/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure consistent box sizing across browsers */
html {
    box-sizing: border-box;
}

/* Cross-browser compatibility */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Fix for IE11 */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .hero-content {
        display: block;
    }

    .hero-text,
    .hero-image {
        display: block;
        width: 100%;
    }
}

/* Fix for Safari */
@supports (-webkit-appearance: none) {

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        -webkit-appearance: none;
        border-radius: 4px;
    }
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9fb;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

/* Image loading states */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

img.loading {
    opacity: 0.5;
    filter: blur(2px);
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #e53e3e;
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #0f2c5c;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 6px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.text-primary {
    color: #e53e3e;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
}

.subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e53e3e;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #c53030;
}

.btn-outline {
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

.btn-full {
    width: 100%;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e53e3e;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: #f9f9fb;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #e53e3e;
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.feature-icon.blue {
    background-color: #3182ce;
}

.feature-icon.green {
    background-color: #38a169;
}

.feature-icon.purple {
    background-color: #805ad5;
}

.feature-icon.orange {
    background-color: #dd6b20;
}

.feature-icon.red {
    background-color: #e53e3e;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1rem;
}

.feature-card ul {
    padding-left: 1.5rem;
}

.feature-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
    color: #666;
}

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

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background-color: #f9f9fb;
}

.how-it-works-content {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.sidebar {
    flex: 0 0 250px;
    background-color: #0f2c5c;
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar-item:hover,
.sidebar-item.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.sidebar-text {
    overflow: hidden;
}

.sidebar-text h4 {
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-text p {
    font-size: 0.75rem;
    margin-bottom: 0;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.content-area {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.content-box {
    display: none;
}

.content-box.active {
    display: block;
}

.content-box h3 {
    margin-bottom: 1rem;
    color: #0f2c5c;
}

.content-box ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-box ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.content-nav {
    display: flex;
    gap: 1rem;
}

.content-nav button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.content-nav button:hover {
    background-color: #e5e5e5;
}

.content-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: white;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9fb;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.stars {
    color: #f6ad55;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    margin-bottom: 1.5rem;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-progress {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-item {
    display: flex;
    align-items: center;
}

.progress-label {
    width: 60px;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #e53e3e;
}

/* Stats Large Section */
.stats-large {
    padding: 4rem 0;
    background-color: #f9f9fb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-large h3 {
    font-size: 3rem;
    color: #0f2c5c;
    margin-bottom: 0.25rem;
}

.stat-large p {
    color: #666;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: white;
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
}

.team-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0f2c5c;
    font-size: 1.5rem;
}

.team-member h4 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
}

.stats-small {
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}

.stat-small h4 {
    font-size: 2rem;
    color: #e53e3e;
    margin-bottom: 0.25rem;
}

.stat-small p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: #f9f9fb;
}

.faq-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0f2c5c;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.faq-header i {
    color: #e53e3e;
    margin-right: 0.75rem;
}

.faq-header h4 {
    margin-bottom: 0;
}

.faq-item p {
    padding-left: 2rem;
    color: #666;
}

.faq-item s {
    padding-left: 2rem;
    color: #00af3d;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

.contact-info {
    flex: 0 0 350px;
    background-color: #0f2c5c;
    color: white;
    border-radius: 8px;
    overflow: hidden;
}

.info-header {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-content {
    padding: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    margin-bottom: 0.25rem;
}

.info-item p {
    margin-bottom: 0;
    opacity: 0.8;
}

.working-hours {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.working-hours h4 {
    margin-bottom: 1rem;
    text-align: center;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
}

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

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #e53e3e;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    /* Tab Navigation System */
    .tab-navigation {
        background-color: white;
        border-bottom: 2px solid #f0f0f0;
        padding: 0;
        margin: 0;
        position: sticky;
        top: 80px;
        z-index: 90;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .tab-navigation ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tab-navigation li {
        position: relative;
    }

    .tab-navigation a {
        display: block;
        padding: 1rem 1.5rem;
        color: #666;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
    }

    .tab-navigation a:hover,
    .tab-navigation a.active {
        color: #e53e3e;
        border-bottom-color: #e53e3e;
        background-color: rgba(229, 62, 62, 0.05);
    }

    /* Tab Content Sections */
    .tab-content {
        display: none;
        padding: 2rem 0;
    }

    .tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Sub-tabs for Programlar */
    .sub-tab-navigation {
        background-color: #f9f9fb;
        border-bottom: 1px solid #e0e0e0;
        padding: 0;
        margin: 0;
    }

    .sub-tab-navigation ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .sub-tab-navigation a {
        display: block;
        padding: 0.75rem 1.25rem;
        color: #666;
        text-decoration: none;
        font-weight: 400;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        font-size: 0.9rem;
    }

    .sub-tab-navigation a:hover,
    .sub-tab-navigation a.active {
        color: #0f2c5c;
        border-bottom-color: #0f2c5c;
        background-color: rgba(15, 44, 92, 0.05);
    }

    /* Sub-sub-tabs for Dikkat Odaklı Program */
    .sub-sub-tab-navigation {
        background-color: #f5f5f5;
        border-bottom: 1px solid #d0d0d0;
        padding: 0;
        margin: 0;
    }

    .sub-sub-tab-navigation ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .sub-sub-tab-navigation a {
        display: block;
        padding: 0.5rem 1rem;
        color: #666;
        text-decoration: none;
        font-weight: 400;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        font-size: 0.85rem;
    }

    .sub-sub-tab-navigation a:hover,
    .sub-sub-tab-navigation a.active {
        color: #38a169;
        border-bottom-color: #38a169;
        background-color: rgba(56, 161, 105, 0.05);
    }

    /* Responsive tabs */
    @media (max-width: 768px) {
        .tab-navigation ul {
            flex-wrap: wrap;
            justify-content: center;
        }

        .tab-navigation a {
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }

        .sub-tab-navigation ul {
            flex-wrap: wrap;
            justify-content: center;
        }

        .sub-tab-navigation a {
            padding: 0.5rem 0.75rem;
            font-size: 0.8rem;
        }

        .sub-sub-tab-navigation ul {
            flex-wrap: wrap;
            justify-content: center;
        }

        .sub-sub-tab-navigation a {
            padding: 0.4rem 0.6rem;
            font-size: 0.75rem;
        }
    }

    @media (max-width: 576px) {
        .tab-navigation {
            top: 60px;
        }

        .tab-navigation a {
            padding: 0.5rem 0.75rem;
            font-size: 0.8rem;
        }

        .sub-tab-navigation a {
            padding: 0.4rem 0.6rem;
            font-size: 0.75rem;
        }

        .sub-sub-tab-navigation a {
            padding: 0.3rem 0.5rem;
            font-size: 0.7rem;
        }
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .how-it-works-content {
        flex-direction: column;
    }

    .sidebar {
        flex: none;
        width: 100%;
        margin-bottom: 2rem;
    }

    .sidebar-item {
        margin-bottom: 0.25rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        flex: none;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-controls {
        display: none;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
        position: relative;
    }

    .logo {
        margin-bottom: 1rem;
    }

    nav {
        width: 100%;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        margin: 1rem 0;
        gap: 1rem;
    }

    nav ul li.has-submenu>.submenu {
        position: static;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        margin: 0.5rem 0;
        background-color: #f9f9fb;
        border-radius: 4px;
    }

    nav ul li.has-submenu .submenu li.has-submenu>.submenu {
        position: static;
        margin-left: 1rem;
    }

    nav ul li.has-submenu .submenu li.has-submenu>a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #0f2c5c;
        z-index: 1001;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .stats-small {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .content-area {
        padding: 1.5rem;
    }

    .sidebar-text p {
        max-width: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .feature-card,
    .summary-card,
    .sub-card,
    .education-card,
    .blog-card {
        padding: 1.25rem;
    }

    .sidebar-item {
        padding: 0.5rem;
    }

    .sidebar-icon {
        width: 24px;
        height: 24px;
        margin-right: 0.5rem;
    }

    .sidebar-text h4 {
        font-size: 0.875rem;
    }

    .sidebar-text p {
        font-size: 0.7rem;
    }

    .content-area {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .info-content {
        padding: 1rem;
    }

    .working-hours {
        padding: 1rem;
    }
}

/* Eyebrow text for section headers */
.eyebrow {
    color: #e53e3e;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

/* Program Summary Section */
.program-summary {
    padding: 4rem 0;
    background-color: #f9f9fb;
}

.summary-header {
    text-align: center;
    margin-bottom: 3rem;
}

.summary-header h2 {
    margin-bottom: 1rem;
}

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

.summary-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.25rem 2rem;
    box-shadow: 0 16px 36px rgba(15, 44, 92, 0.08);
    border: 1px solid rgba(15, 44, 92, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(15, 44, 92, 0.12);
}

.summary-card:hover::after {
    border-color: rgba(229, 62, 62, 0.25);
}

.summary-card h3 {
    color: #0f2c5c;
    margin-bottom: 1rem;
}

.summary-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.summary-card ul {
    padding-left: 1.5rem;
}

.summary-card ul li {
    margin-bottom: 0.5rem;
    color: #666;
    list-style-type: disc;
}

/* Sub Programs Section */
.sub-programs {
    padding: 4rem 0;
    background-color: white;
}

.sub-programs .container {
    text-align: center;
}

.sub-programs h2 {
    margin-bottom: 3rem;
}

.sub-program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    max-width: 1040px;
    margin: 0 auto;
}

.sub-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.85rem;
    border: 1px solid rgba(15, 44, 92, 0.08);
    box-shadow: 0 14px 32px rgba(15, 44, 92, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sub-card::before {
    content: "";
    width: 42px;
    height: 4px;
    border-radius: 4px;
    background-color: #e53e3e;
}

.sub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px rgba(15, 44, 92, 0.12);
    border-color: rgba(229, 62, 62, 0.25);
}

.sub-card h3 {
    color: #0f2c5c;
    margin-bottom: 1rem;
}

.sub-card p {
    color: #666;
}

/* Education Section */
.education-section {
    padding: 4rem 0;
    background-color: #f9f9fb;
}

.education-section .container {
    text-align: center;
}

.education-section h2 {
    margin-bottom: 3rem;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.education-card h3 {
    color: #0f2c5c;
    margin-bottom: 1rem;
}

.education-card p {
    color: #666;
}

/* Blog Preview Section */
.blog-preview {
    padding: 4rem 0;
    background-color: white;
}

.blog-preview .container {
    text-align: center;
}

.blog-preview h2 {
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: #f9f9fb;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.blog-card .badge {
    display: inline-block;
    background-color: #e53e3e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: #0f2c5c;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #e53e3e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #c53030;
    text-decoration: underline;
}

/* Responsive improvements for new sections */
@media (max-width: 992px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .sub-program-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {

    .summary-card,
    .sub-card,
    .education-card,
    .blog-card {
        padding: 1.5rem;
    }

    .sub-program-grid {
        grid-template-columns: 1fr;
    }

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

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