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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #545454;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #024879, #024879);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 72, 121, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 72, 121, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #024879;
    border: 2px solid #024879;
}

.btn-secondary:hover {
    background: #024879;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #024879;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #024879;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #024879;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.highlight {
    background: linear-gradient(135deg, #024879, #024879);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #545454;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.875rem;
    color: #545454;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #545454;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text a {
    color: #024879;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-text a:hover {
    color: #efc600;
    text-decoration: underline;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: #024879;
}

.feature-item i {
    font-size: 1.25rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #024879, #024879);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #545454;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

/* Order Section */
.order {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.order-text h2 {
    color: #024879;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.order-text > p {
    color: #545454;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-features {
    margin: 2rem 0;
}

.order-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #024879;
}

.order-feature i {
    color: #024879;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.order-feature span {
    color: #545454;
    font-weight: 500;
    font-size: 1.1rem;
}

.order-pricing {
    margin: 2.5rem 0;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #efc600;
}

.price-highlight {
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #024879;
    display: block;
}

.price-unit {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-note {
    color: #545454;
    font-size: 0.95rem;
    margin: 0;
}

.order-btn {
    margin: 2rem 0;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(2, 72, 121, 0.3);
}

.order-btn i {
    font-size: 1.3rem;
}

.order-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
    text-align: center;
}

.order-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.25rem;
    color: #024879;
}

.benefit-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.benefit-content p {
    color: #545454;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefits-image {
    display: flex;
    justify-content: center;
}

.benefits-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #024879, #024879);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.cta .btn-primary {
    background: white;
    color: #024879;
    font-weight: 600;
}

.cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Booking CTA Styling */
.booking-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e2e8f0;
}

.booking-cta h3 {
    color: #024879;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-cta > p {
    color: #545454;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-benefits {
    margin: 2rem 0;
    text-align: left;
}

.booking-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #024879;
}

.booking-benefits .benefit-item i {
    color: #024879;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.booking-benefits .benefit-item span {
    color: #545454;
    font-weight: 500;
}

.booking-btn {
    margin: 2rem 0;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 72, 121, 0.3);
}

.booking-btn i {
    font-size: 1.2rem;
}

.booking-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.contact-info h3 {
    color: #1e293b;
    margin-bottom: 2rem;
}

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

.contact-item i {
    width: 20px;
    color: #024879;
    margin-top: 0.25rem;
}

.contact-item span {
    color: #545454;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #024879;
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

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

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9bccff;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9bccff;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover {
    background: #024879;
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: #cbd5e1;
    margin-bottom: 0;
}

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

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #9bccff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content,
    .benefits-content,
    .contact-content,
    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-cta {
        padding: 2rem 1.5rem;
    }
    
    .booking-cta h3 {
        font-size: 1.5rem;
    }
    
    .booking-benefits .benefit-item {
        padding: 0.5rem;
    }
    
    .order-text h2 {
        font-size: 2rem;
    }
    
    .order-feature {
        padding: 0.75rem;
    }
    
    .order-pricing {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

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

.feature-card,
.benefit-item,
.about-text,
.about-image {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-header h1 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.legal-date {
    color: #efc600;
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.legal-section h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #024879;
    padding-bottom: 0.5rem;
}

.legal-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #024879;
}

.contact-info-legal {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #024879;
    margin-top: 1rem;
}

.contact-info-legal p {
    margin-bottom: 0.5rem;
}

.contact-info-legal a {
    color: #024879;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-legal a:hover {
    color: #024879;
    text-decoration: underline;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 80px 0 40px;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .feature-card,
    .benefit-item,
    .about-text,
    .about-image {
        animation: none;
    }
}

/* Training Materials Styling */
.training-module {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #024879;
}

.training-module h3 {
    color: #024879;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.training-description {
    margin-top: 2rem;
}

.training-description h4 {
    color: #024879;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.training-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.training-description li {
    margin: 0.5rem 0;
    color: #545454;
}

/* Definition Grid Styling */
.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.definition-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #024879;
}

.definition-item h4 {
    color: #024879;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.definition-item p {
    color: #545454;
    margin: 0;
}

/* Procedure Steps Styling */
.procedure-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: #024879;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #024879;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    color: #545454;
    margin: 0;
    font-size: 0.95rem;
}

/* Statistics and Charts Styling */
.stats-container {
    margin: 2rem 0;
}

.stat-chart {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.stat-chart h3 {
    color: #024879;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-container {
    position: relative;
    height: 300px;
    margin: 1.5rem 0;
}

.chart-caption {
    text-align: center;
    color: #545454;
    font-style: italic;
    margin-top: 1rem;
}

.stat-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #024879;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #024879;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #545454;
    font-size: 1rem;
    font-weight: 500;
}

/* Failure Reasons Styling */
.failure-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.reason-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 3px solid #efc600;
}

.reason-item i {
    font-size: 2rem;
    color: #efc600;
    margin-bottom: 1rem;
}

.reason-item h4 {
    color: #024879;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reason-item p {
    color: #545454;
    margin: 0;
    font-size: 0.95rem;
}

/* Solution Features Styling */
.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.solution-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 3px solid #024879;
}

.solution-item i {
    font-size: 2rem;
    color: #024879;
    margin-bottom: 1rem;
}

.solution-item h4 {
    color: #024879;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.solution-item p {
    color: #545454;
    margin: 0;
    font-size: 0.95rem;
}

/* Team Member Styling */
.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.member-info h3 {
    color: #024879;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.member-title {
    color: #efc600;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.member-info p {
    color: #545454;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-expertise h4 {
    color: #024879;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.member-expertise ul {
    margin: 0;
    padding-left: 1.5rem;
}

.member-expertise li {
    color: #545454;
    margin: 0.5rem 0;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .training-module {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .definition-grid {
        grid-template-columns: 1fr;
    }
    
    .procedure-steps {
        grid-template-columns: 1fr;
    }
    
    .stat-highlights {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .failure-reasons,
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 250px;
    }
}
