@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Poppins', sans-serif;
}
:root {
    --theme-red: #e63946;
    --theme-blue: #1d3557;
    --theme-light: #f1faee;
    --theme-teal: #ff8801;
    --theme-dark: #457b9d;
}

.faq-question {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--theme-red);
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    color: var(--theme-blue);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--theme-red);
}

.faq-answer {
    padding: 0 0 15px;
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item.active .faq-answer {
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

h2 {
    text-align: center;
    color: var(--theme-blue);
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Enhanced Table Styles */
.table-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.curriculum-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    table-layout: fixed; /* Prevent table from expanding */
}

.curriculum-table th {
    background: var(--theme-blue);
    color: white;
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.curriculum-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #e2e8f0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fixed column widths to prevent expansion */
.curriculum-table th:nth-child(1),
.curriculum-table td:nth-child(1) {
    width: 35%;
}

.curriculum-table th:nth-child(2),
.curriculum-table td:nth-child(2) {
    width: 12%;
    text-align: center;
}

.curriculum-table th:nth-child(3),
.curriculum-table td:nth-child(3) {
    width: 10%;
    text-align: center;
}

.curriculum-table th:nth-child(4),
.curriculum-table td:nth-child(4) {
    width: 10%;
    text-align: center;
}

.curriculum-table th:nth-child(5),
.curriculum-table td:nth-child(5) {
    width: 10%;
    text-align: center;
}

.curriculum-table th:nth-child(6),
.curriculum-table td:nth-child(6) {
    width: 23%;
}

.curriculum-table tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
}

.curriculum-table tbody tr:hover {
    background-color: #f8fafc;
    transform: translateX(0); /* Removed horizontal translation */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.curriculum-table tbody tr.expanded {
    background-color: #f0f9ff;
}

.curriculum-table tfoot {
    background-color: #f1f5f9;
    font-weight: 600;
}

.curriculum-table tfoot td {
    border-bottom: none;
    text-align: center;
}

.curriculum-table tfoot td:first-child {
    text-align: left;
}

.module-details {
    display: none;
    background-color: #f8fafc;
    border-left: 4px solid var(--theme-red);
}

.module-details.active {
    display: table-row;
}

.module-details td {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.module-details-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.detail-item {
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.detail-label {
    font-weight: 600;
    color: var(--theme-blue);
    display: block;
    margin-bottom: 5px;
}

.toggle-icon {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.expanded .toggle-icon {
    transform: rotate(90deg);
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background-color: rgb(255, 240, 208) !important;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-red);
    margin: 10px 0;
}

.stat-label {
    color: #64748b;
    font-size: 1rem;
}

.enroll-button{
    background: var(--theme-red);
    border: 1px solid var(--theme-red);
    transition: all 0.3s ease;
    width: 300px;
}

.learn-more-button{
    width: 300px;
}

.enroll-button:hover {
    background: rgb(194, 0, 0);
}

.enroll-button, .wp-button{
    width: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .curriculum-table {
        table-layout: auto;
        min-width: 700px;
    }
    
    .curriculum-table th, 
    .curriculum-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
.hero-gradient {
    background: linear-gradient(135deg, var(--theme-blue) 0%, var(--theme-dark) 100%);
}

.course-highlight {
    background: linear-gradient(135deg, #cc2900 0%, #d45d01 100%);
}

.module-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--theme-red);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.cta-button {
    border: 1px solid white;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: white;
    color: var(--theme-red);
}

.benefit-icon {
    background: var(--theme-teal);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 10px;
}

.floating-whatsapp {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}