/* CSS Variables */
:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --dark-color: #002b5b;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo a {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(26, 95, 122, 0.1);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 5%;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    background-color: var(--light-color);
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 5%;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section */
.about-content {
    background-color: var(--white);
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.value-item {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* Team Section */
.team {
    background-color: var(--light-color);
}

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

.team-member {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-member h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Courses Section */
.courses-section {
    background-color: var(--white);
}

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

.course-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.course-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, rgba(26, 95, 122, 0.05), var(--white));
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.course-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-card > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.course-features {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.course-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    list-style: disc;
}

.course-duration {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Course Benefits */
.course-benefits {
    background-color: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

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

.contact-info h3,
.contact-form-wrapper h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 5% 20px;
}

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

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 70px;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding-top: 2rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .burger {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 60px 5%;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 60px 5%;
    }

    .btn {
        padding: 10px 25px;
    }

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

/* =====================================================
   DATA ANALYTICS COURSE PAGE STYLES
   ===================================================== */

/* Course Hero */
.course-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 5%;
    text-align: center;
}

.course-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.course-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

.course-tagline {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.course-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.course-meta span {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 5px;
}

/* Why Analytics Section */
.why-analytics {
    background-color: var(--white);
    text-align: center;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* USP Section */
.usp-section {
    background-color: var(--light-color);
}

.usp-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.usp-box h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.usp-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.usp-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.usp-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
}

.usp-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Program Delivers */
.program-delivers {
    background-color: var(--white);
}

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

.deliver-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.check-icon {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

/* Skills Section */
.skills-section {
    background-color: var(--light-color);
}

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

.skills-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.skills-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.skills-list {
    list-style: none;
}

.skills-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.skills-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.skills-list li strong {
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-section {
    background-color: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--dark-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th.highlight-col {
    background-color: var(--primary-color);
}

.comparison-table td.highlight-col {
    background-color: rgba(21, 152, 149, 0.1);
    font-weight: 500;
    color: var(--dark-color);
}

.comparison-table tbody tr:hover {
    background-color: var(--light-color);
}

/* Roadmap Section */
.roadmap-section {
    background-color: var(--light-color);
}

.roadmap {
    max-width: 800px;
    margin: 2rem auto 0;
}

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.roadmap-item:hover {
    transform: translateX(10px);
}

.roadmap-item.core-module {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to right, rgba(26, 95, 122, 0.05), var(--white));
}

.roadmap-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.roadmap-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.core-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 600;
}

.optional-badge {
    background-color: var(--text-light);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 600;
}

/* Projects Section */
.projects-section {
    background-color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.project-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.project-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.project-card h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.project-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Capstone Section */
.capstone-section {
    background-color: var(--light-color);
}

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

.capstone-category {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.capstone-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.capstone-item {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
}

.capstone-item:last-child {
    margin-bottom: 0;
}

.capstone-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.capstone-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Graduate Section */
.graduate-section {
    background-color: var(--white);
}

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

.graduate-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.graduate-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.graduate-icon {
    font-size: 1.8rem;
}

/* Careers Section */
.careers-section {
    background-color: var(--light-color);
}

.careers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.career-item {
    background-color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
}

.career-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.career-advantage {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(21, 152, 149, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Tools Section */
.tools-section {
    background-color: var(--white);
}

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

.tools-category {
    text-align: center;
}

.tools-category h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tool-badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

.tool-badge.core {
    background-color: var(--primary-color);
    color: var(--white);
}

.tool-badge.optional {
    background-color: var(--light-color);
    color: var(--text-color);
    border: 1px solid #ddd;
}

/* Eligibility Section */
.eligibility-section {
    background-color: var(--light-color);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.eligibility-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.eligibility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.eligibility-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.eligibility-item p {
    color: var(--text-light);
}

.no-experience {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
}

/* Certification Section */
.certification-section {
    background-color: var(--white);
}

.certification-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    border-radius: 15px;
    text-align: center;
    flex-wrap: wrap;
}

.cert-icon {
    font-size: 5rem;
}

.cert-content h2 {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.cert-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.cert-content p {
    opacity: 0.8;
}

/* Course CTA */
.course-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.course-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-item {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 5px;
}

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

/* Responsive adjustments for course page */
@media screen and (max-width: 768px) {
    .course-hero h1 {
        font-size: 2rem;
    }

    .course-tagline {
        font-size: 1.1rem;
    }

    .course-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .usp-box {
        padding: 2rem;
    }

    .usp-points {
        flex-direction: column;
    }

    .roadmap-item {
        flex-direction: column;
        text-align: center;
    }

    .roadmap-number {
        margin: 0 auto;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .certification-box {
        flex-direction: column;
        text-align: center;
    }

    .course-cta h2 {
        font-size: 1.8rem;
    }

    .cta-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =====================================================
   THANK YOU PAGE STYLES
   ===================================================== */

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    padding: 80px 5%;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(21, 152, 149, 0.3);
}

.thank-you-content h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thank-you-details {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-reminder {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-reminder p {
    margin: 0.25rem 0;
    color: var(--text-color);
}

@media screen and (max-width: 480px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* =====================================================
   NEW HOME PAGE STYLES
   ===================================================== */

/* New Hero Section */
.hero-new {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 5%;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(87, 197, 182, 0.2);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-color);
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text h1 .highlight {
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-color);
}

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

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.highlight-icon {
    color: var(--accent-color);
    font-weight: bold;
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: var(--white);
    color: var(--dark-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotate(3deg);
    transition: var(--transition);
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hero-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 60px 5%;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--white);
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Featured Course Section */
.featured-course {
    background: var(--light-color);
    padding: 80px 5%;
}

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

.featured-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.featured-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.featured-highlights {
    margin-bottom: 2rem;
}

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

.fh-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.featured-highlight h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.featured-highlight p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Comparison Preview */
.comparison-preview {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.comparison-preview h4 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.comp-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.comp-bar {
    height: 28px;
    background: var(--light-color);
    border-radius: 14px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.comp-fill {
    height: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.comp-fill.shiny {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.comp-fill.other {
    background: #ccc;
    color: var(--text-color);
}

.comparison-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}

/* Why Us Section */
.why-us {
    background: var(--white);
    padding: 80px 5%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Learning Path Section */
.learning-path {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 5%;
}

.learning-path .section-title {
    color: var(--white);
}

.path-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.path-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.path-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.path-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.path-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.path-content p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* New CTA Section */
.cta-new {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 5%;
    text-align: center;
}

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

.cta-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-contact {
    font-size: 1rem;
}

.cta-contact span {
    opacity: 0.8;
    margin-right: 0.5rem;
}

.cta-phone {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.cta-phone:hover {
    text-decoration: underline;
}

/* Home Page Responsive */
@media screen and (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-card {
        transform: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .path-timeline::before {
        display: none;
    }

    .path-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .path-number {
        margin: 0;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 768px) {
    .hero-new {
        padding: 60px 5%;
        min-height: auto;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .stats-grid {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   COURSE CONTENT PAGE STYLES
   ===================================================== */

/* Content Header */
.content-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 60px 5% 80px;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--accent-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.content-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.content-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.95rem;
}

/* Curriculum Overview */
.curriculum-overview {
    background: var(--white);
    padding: 40px 5%;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.week-navigation {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    justify-content: center;
}

.week-nav-item {
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    background: var(--white);
    transition: var(--transition);
}

.week-nav-item:hover,
.week-nav-item.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Week Content Section */
.week-content {
    background: var(--light-color);
    padding: 60px 5%;
}

.week-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.week-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.week-info h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.week-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.week-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--white);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

/* Content Blocks */
.content-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.block-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.block-icon {
    font-size: 1.5rem;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.objective-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.obj-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.objective-item p {
    color: var(--text-color);
    margin: 0;
}

/* Day Accordion */
.day-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--light-color);
    cursor: pointer;
}

.day-label {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.day-header h4 {
    flex: 1;
    color: var(--dark-color);
    margin: 0;
}

.day-duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

.day-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.day-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.day-content ul {
    list-style: none;
    padding: 0;
}

.day-content ul li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.day-content ul li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.day-content ul ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.day-content ul ul li {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Project Brief */
.project-brief {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(21, 152, 149, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.project-brief h6 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.project-brief p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Tools & Resources */
.tools-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.tool-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tool-item ul {
    list-style: none;
    padding: 0;
}

.tool-item li {
    padding: 0.3rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Takeaways */
.takeaways-block {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.takeaways-block .block-title {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

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

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.takeaway-icon {
    width: 24px;
    height: 24px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.takeaway-item p {
    margin: 0;
    opacity: 0.95;
}

/* Next Week Preview */
.next-week {
    border: 2px dashed var(--primary-color);
    background: rgba(26, 95, 122, 0.05);
}

.next-preview h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.next-preview p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.preview-topics {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.preview-topics span {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Other Weeks Section */
.other-weeks {
    background: var(--white);
    padding: 60px 5%;
}

.weeks-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.week-collapsed {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.week-collapsed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--light-color);
}

.week-num {
    background: var(--dark-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.week-collapsed-header h4 {
    flex: 1;
    color: var(--dark-color);
    margin: 0;
}

.coming-tag {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Content CTA */
.content-cta {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 5%;
    text-align: center;
}

.content-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.content-cta .cta-buttons {
    margin-bottom: 1.5rem;
}

.cta-contact {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-contact a {
    color: var(--accent-color);
    font-weight: 600;
}

/* Course Content Responsive */
@media screen and (max-width: 768px) {
    .content-header h1 {
        font-size: 2rem;
    }

    .content-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .week-header {
        flex-direction: column;
        gap: 1rem;
    }

    .week-number {
        padding: 1rem 1.5rem;
    }

    .week-info h2 {
        font-size: 1.5rem;
    }

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

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

    .takeaways-list {
        grid-template-columns: 1fr;
    }

    .week-collapsed-header {
        flex-wrap: wrap;
    }

    .coming-tag {
        margin-left: auto;
    }
}

@media screen and (max-width: 480px) {
    .week-navigation {
        gap: 0.3rem;
    }

    .week-nav-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .day-header {
        flex-wrap: wrap;
    }

    .day-duration {
        width: 100%;
        margin-top: 0.5rem;
    }
}
