/* Professional L&D Version Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

header .logo img {
    height: 60px;
    width: auto;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

header nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

header nav a:hover {
    color: #1E88E5;
    background: #f8f9fa;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.cpd-badge {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cpd-badge img {
    max-width: 120px;
    margin-bottom: 1rem;
}

.cpd-badge p {
    font-size: 0.9rem;
    margin: 0;
}

/* Accreditation Section */
#accreditation {
    padding: 4rem 0;
    background: #f8f9fa;
}

#accreditation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1E88E5;
}

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

.accreditation-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #1E88E5;
}

.accreditation-item h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* About Section */
#about {
    padding: 4rem 0;
    background: #fff;
}

#about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1E88E5;
}

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

.about-item {
    padding: 2rem;
    text-align: center;
}

.about-item h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Training Section */
#training {
    padding: 4rem 0;
    background: #f8f9fa;
}

#training h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1E88E5;
}

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

.program {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.program.featured {
    border: 3px solid #1E88E5;
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff5722;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.program:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}

.program h3 {
    color: #1E88E5;
    margin: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
}

.program-details {
    display: flex;
    gap: 1rem;
    margin: 0 1.5rem 1rem;
    flex-wrap: wrap;
}

.program-details span {
    background: #e3f2fd;
    color: #1565c0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.program p {
    margin: 0 1.5rem 1rem;
    color: #666;
    line-height: 1.6;
}

.learning-outcomes {
    margin: 0 1.5rem 1.5rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.learning-outcomes h4 {
    color: #1E88E5;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.learning-outcomes ul {
    list-style: none;
    padding: 0;
}

.learning-outcomes li {
    padding: 0.2rem 0;
    color: #2e7d32;
    font-size: 0.9rem;
}

.learning-outcomes li:before {
    content: "✓ ";
    color: #2e7d32;
    font-weight: bold;
}

.program-footer {
    margin-top: auto;
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E88E5;
}

.group-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

.btn {
    background: linear-gradient(135deg, #1E88E5, #1976D2);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Consultation Section */
#consultation {
    padding: 4rem 0;
    background: #f8f9fa;
}

#consultation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1E88E5;
}

.consultation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.consultation-info h3 {
    color: #1E88E5;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.consultation-info p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.service-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #1E88E5;
}

.service-item h4 {
    color: #1E88E5;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.consultation-cta {
    position: sticky;
    top: 2rem;
}

.cta-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    border: 2px solid #1E88E5;
}

.cta-card h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.consultation-benefits ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.consultation-benefits li {
    padding: 0.5rem 0;
    color: #2e7d32;
    font-weight: 500;
}

/* Outcomes Section */
#outcomes {
    padding: 4rem 0;
    background: #fff;
}

#outcomes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1E88E5;
}

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

.outcome-item {
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
}

.outcome-item h3 {
    color: #1E88E5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Contact Section */
#contact {
    padding: 4rem 0;
    background: #1E88E5;
    color: #fff;
}

#contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3,
.contact-cta h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.contact-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    padding: 2rem 0;
    background: #0D47A1;
    color: #fff;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1E88E5;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: #1976D2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .training-programs {
        grid-template-columns: 1fr;
    }
    
    .accreditation-grid,
    .about-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-services {
        grid-template-columns: 1fr;
    }
    
    .consultation-cta {
        position: static;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 20px;
    }
    
    header .logo img {
        height: 60px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        display: none;
        z-index: 1000;
    }
    
    header nav.active {
        display: block;
    }
    
    header nav ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 1rem 0;
    }
    
    header nav li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    header nav li:last-child {
        border-bottom: none;
    }
    
    header nav a {
        display: block;
        padding: 1rem 2rem;
        color: #333;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    header nav a:hover {
        background: #f8f9fa;
        color: #1E88E5;
    }
}
