:root {
    /* Turquoise Theme Colors */
    --primary: #20B2AA;
    --primary-dark: #008080;
    --primary-light: #40E0D0;
    --secondary: #FF6B6B;
    --secondary-light: #FF8E8E;
    --accent: #4ECDC4;
    
    /* Background Colors */
    --bg-primary: #F0FDFD;
    --bg-secondary: #E6FFFE;
    --bg-white: #FFFFFF;
    --bg-gray-light: #F8FAFC;
    
    /* Text Colors */
    --text-dark: #2D3748;
    --text-gray: #4A5568;
    --text-light: #718096;
    --text-white: #FFFFFF;
    
    /* Border & Shadow */
    --border-light: #E2E8F0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--primary-light) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px var(--shadow));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px var(--shadow);
}

.hero-text {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--text-white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-large {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Classes Section */
.classes-section {
    background: var(--bg-gray-light);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.class-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.class-card.toddlers {
    background: linear-gradient(135deg, #FFE4E6 0%, #FED7E2 100%);
    border-color: var(--secondary);
}

.class-card.kids {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-color: var(--primary);
}

.class-card.adults {
    background: linear-gradient(135deg, #E6FFFA 0%, #B2F5EA 100%);
    border-color: var(--accent);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-header p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-weight: 500;
}

.features-list i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.video-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.video-placeholder {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.video-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.video-placeholder small {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--bg-gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow);
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.map-container {
    height: 400px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 20%, var(--primary) 100%);
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-placeholder small {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1A202C 100%);
    color: var(--text-white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
}

/* Certificate Grid */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certificate-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

.certificate-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-gray-light);
}

.certificate-info {
    padding: 20px;
}

.certificate-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.certificate-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .class-card {
        padding: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .class-card {
        padding: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.hidden {
    display: none;
}

/* Age Group Specific Styles */
.age-group-toddlers {
    --group-color: #FF6B6B;
    --group-bg: linear-gradient(135deg, #FFE4E6 0%, #FED7E2 100%);
}

.age-group-kids {
    --group-color: var(--primary);
    --group-bg: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.age-group-adults {
    --group-color: var(--accent);
    --group-bg: linear-gradient(135deg, #E6FFFA 0%, #B2F5EA 100%);
}

.age-group-professional {
    --group-color: #6B46C1;
    --group-bg: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
}

.age-group-hero {
    background: var(--group-bg);
    color: var(--text-dark);
}

.age-group-accent {
    color: var(--group-color);
}

.age-group-btn {
    background: linear-gradient(135deg, var(--group-color) 0%, color-mix(in srgb, var(--group-color) 80%, black 20%) 100%);
}

/* Professional Page Specific Styles */
.professional-accent {
    color: #6B46C1;
}

.professional-prereq-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.professional-prereq-card .card-header {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    padding: 20px;
    border-radius: 12px 12px 0 0;
}

.professional-prereq-card .card-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    margin: 0;
}

.professional-prereq-card .card-content {
    padding: 30px;
}

.prerequisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.prereq-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prereq-item i {
    font-size: 18px;
    flex-shrink: 0;
}

.professional-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.program-card.baby-specialist {
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
    border-color: #F472B6;
}

.program-card.foundation-cert {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-color: #60A5FA;
}

.program-card.advanced-cert {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    border-color: #A78BFA;
}

.program-card.adult-specialist {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-color: #6EE7B7;
}

.program-card .card-header {
    padding: 25px;
}

.program-card .card-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.level-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.program-card .card-content {
    padding: 0 25px 25px;
}

.duration-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.duration-info i {
    color: #6B46C1;
}

.covers-section {
    margin-bottom: 20px;
}

.covers-section h4 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 16px;
}

.covers-list {
    list-style: none;
    padding: 0;
}

.covers-list li {
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.covers-list i {
    color: #60A5FA;
    margin-top: 2px;
    flex-shrink: 0;
}

.career-opportunities {
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
    border-radius: 8px;
}

.career-opportunities h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.career-opportunities h4 i {
    color: #6B46C1;
}

.career-opportunities p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card i {
    font-size: 48px;
    color: #6B46C1;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.professional-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-card .card-header {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    padding: 20px;
    border-radius: 16px 16px 0 0;
}

.info-card.training-info .card-header {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
}

.info-card .card-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    margin: 0;
}

.info-card .card-content {
    padding: 30px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.why-choose-list i {
    color: #6B46C1;
    margin-top: 2px;
    flex-shrink: 0;
}

.training-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.training-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.training-item i {
    color: var(--text-light);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.training-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 16px;
}

.training-item p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.progression-path {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.progression-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.progression-step h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.progression-step p {
    color: var(--text-gray);
    font-size: 14px;
}

.progression-arrow {
    color: var(--text-light);
    font-size: 24px;
    display: none;
}

.cta-section {
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%);
    padding: 60px 0;
    margin-top: 60px;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    min-width: 160px;
}

.cta-buttons .btn.btn-primary {
    background: white;
    color: #6B46C1;
}

.cta-buttons .btn.btn-primary:hover {
    background: #F3F4F6;
}

.cta-buttons .btn.btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.next-courses {
    opacity: 0.75;
}

.next-courses small {
    font-size: 14px;
}

/* Responsive Design for Professional Page */
@media (max-width: 768px) {
    .prerequisites-grid {
        grid-template-columns: 1fr;
    }
    
    .professional-programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .career-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .professional-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .progression-path {
        flex-direction: column;
        gap: 20px;
    }
    
    .progression-arrow {
        display: block;
        transform: rotate(90deg);
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 769px) {
    .progression-arrow {
        display: block;
    }
}

/* SSI Partnership Styles */
.partnership-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    padding: 80px 0;
}

.partnership-card {
    max-width: 1000px;
    margin: 40px auto 0;
}

.partnership-card-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.partnership-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.partnership-shield {
    color: #0EA5E9;
    font-size: 24px;
}

.partnership-header h3 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.partnership-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.partnership-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.partnership-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partnership-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 12px;
}

.partnership-benefits-list li:last-child {
    margin-bottom: 0;
}

.partnership-benefits-list i {
    color: #F59E0B;
    font-size: 16px;
    flex-shrink: 0;
}

.partnership-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ssi-logo-reference {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partnership-label {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* SSI Highlight Section for Professional Page */
.ssi-highlight-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #3730A3 100%);
    padding: 60px 0;
    color: white;
}

.ssi-highlight-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
}

.ssi-logo-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ssi-logo-professional {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 4px 20px rgba(255, 255, 255, 0.2));
}

.ssi-highlight-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.highlight-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.ssi-credentials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.credential-item i {
    color: #60A5FA;
    font-size: 16px;
}

.credential-item span {
    font-weight: 500;
    font-size: 14px;
}

/* Responsive Design for Partnership Sections */
@media (max-width: 768px) {
    .partnership-card-content {
        padding: 30px 20px;
    }
    
    .partnership-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partnership-logo-section {
        order: -1;
    }
    
    .partnership-header h3 {
        font-size: 20px;
    }
    
    .partnership-text p {
        font-size: 15px;
    }
    
    .ssi-logo-reference {
        width: 100px;
        height: 100px;
    }
    
    .ssi-highlight-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .ssi-logo-professional {
        max-width: 150px;
    }
    
    .ssi-highlight-text h2 {
        font-size: 24px;
    }
    
    .highlight-description {
        font-size: 16px;
    }
    
    .ssi-credentials {
        justify-content: center;
        gap: 15px;
    }
    
    .partnership-cta {
        padding: 30px 20px;
    }
    
    .partnership-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ssi-credentials {
        flex-direction: column;
        align-items: center;
    }
}