/* Base Styles & Variables */
:root {
    --primary: #3a86ff;
    --secondary: #8338ec;
    --accent: #ff006e;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #38b000;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* Enhanced Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-content {
    text-align: center;
    color: white;
    position: relative;
}

.logo-container {
    margin-bottom: 2rem;
    position: relative;
}

.logo {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #fff 30%, #e0f7ff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.loading-bar-container {
    width: 400px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem auto;
    position: relative;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd166, #ff9e00);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 1.5s infinite;
}

.loading-text {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-top: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.loading-percentage {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.loading-message {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.shape:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 85%;
    animation-delay: 3s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header */
.header-container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.header-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.header-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.header-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.content-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-container.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.image-content {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

/* Stats Section */
.stats-section {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
    margin: 15px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--light);
    text-align: center;
    padding: 100px 20px;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Specific Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-img {
    width: 80px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* About Page Specific Styles */
.team-section {
    margin-top: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 20px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Audio Player Styles */
.audio-controls {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.audio-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* Particle Effects */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-container, .content-container.reverse {
        flex-direction: column;
    }
    
    .header-title {
        font-size: 3.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 2.8rem;
    }
    
    .header-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .loading-bar-container {
        width: 300px;
    }

    .logo {
        font-size: 3.5rem;
    }

    .logo-icon {
        font-size: 4.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-img {
        width: 60px;
    }
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tablet View (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    /* General Adjustments */
    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    /* Header Adjustments */
    .header-title {
        font-size: 3.5rem;
    }

    .header-subtitle {
        font-size: 1.5rem;
    }

    /* Navigation Adjustments */
    .nav-links {
        gap: 20px;
    }

    /* Content Section Adjustments */
    .content-container {
        gap: 30px;
        flex-direction: column; /* Stack content vertically */
        margin-bottom: 60px;
    }

    .content-container.reverse {
        flex-direction: column; /* Keep stacked for reverse as well */
    }

    .text-content {
        order: 2; /* Put text below image on tablet */
    }

    .image-content {
        order: 1; /* Put image above text on tablet */
        max-width: 80%; /* Constrain image size */
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content h3 {
        font-size: 1.6rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    /* Stats Section Adjustments */
    .stats-container {
        justify-content: space-evenly;
    }

    .stat-item {
        flex-basis: 40%; /* Allow two items per row */
        margin: 20px 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    /* Loading Screen Adjustments */
    .loading-bar-container {
        width: 300px;
    }

    .logo {
        font-size: 3.5rem;
    }

    .logo-icon {
        font-size: 5rem;
    }
}

/* --------------------------------------------------------------------------
   Mobile View (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* General Adjustments */
    .section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Header Adjustments */
    .header-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .header-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 1rem;
        width: 100%; /* Full width buttons */
    }

    /* Navigation Adjustments */
    .nav-links {
        display: flex; /* Hide navigation links on mobile */
        visibility: visible;
    }

    .nav-cta {
        /* Keep CTA button visible or hide it depending on design */
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    /* Menu Toggle Button (requires HTML/JS) */
    .menu-toggle {
        display: block; /* Assuming a menu toggle button exists */
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
    }

    /* Content Section Adjustments */
    .content-container {
        margin-bottom: 40px;
        gap: 20px;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .text-content h3 {
        font-size: 1.4rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }

    .image-content {
        max-width: 100%; /* Use full width */
    }

    /* Stats Section Adjustments */
    .stats-section {
        padding: 50px 15px;
    }

    .stat-item {
        flex-basis: 100%; /* One item per row */
        margin: 10px 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-text {
        font-size: 1.1rem;
    }

    /* Loading Screen Adjustments */
    .loading-bar-container {
        width: 90%;
    }

    .logo {
        font-size: 3rem;
    }

    .logo-icon {
        font-size: 4rem;
    }

    .loading-text {
        font-size: 1.1rem;
    }

    .loading-message {
        font-size: 1rem;
    }
}

/* --------------------------------------------------------------------------
   Extra Small Mobile View (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .header-title {
        font-size: 2.2rem;
    }

    .header-subtitle {
        font-size: 1.1rem;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}




/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tablet View (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    /* General Adjustments */
    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    /* Header Adjustments */
    .header-title {
        font-size: 3.5rem;
    }

    .header-subtitle {
        font-size: 1.5rem;
    }

    /* Navigation Adjustments */
    .nav-links {
        gap: 20px;
    }

    /* Content Section Adjustments */
    .content-container {
        gap: 30px;
        flex-direction: column; /* Stack content vertically */
        margin-bottom: 60px;
    }

    .content-container.reverse {
        flex-direction: column; /* Keep stacked for reverse as well */
    }

    .text-content {
        order: 2; /* Put text below image on tablet */
    }

    .image-content {
        order: 1; /* Put image above text on tablet */
        max-width: 80%; /* Constrain image size */
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content h3 {
        font-size: 1.6rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    /* Stats Section Adjustments */
    .stats-container {
        justify-content: space-evenly;
    }

    .stat-item {
        flex-basis: 40%; /* Allow two items per row */
        margin: 20px 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    /* Loading Screen Adjustments */
    .loading-bar-container {
        width: 300px;
    }

    .logo {
        font-size: 3.5rem;
    }

    .logo-icon {
        font-size: 5rem;
    }
}

/* --------------------------------------------------------------------------
   Mobile View (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* General Adjustments */
    .section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Header Adjustments */
    .header-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .header-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .header-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 1rem;
        width: 100%; /* Full width buttons */
    }

    /* Navigation Adjustments */
    .nav-links {
        display: flex; /* Hide navigation links on mobile */
        visibility: visible;
    }

    .nav-cta {
        /* Keep CTA button visible or hide it depending on design */
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    /* Menu Toggle Button (requires HTML/JS) */
    .menu-toggle {
        display: block; /* Assuming a menu toggle button exists */
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
    }

    /* Content Section Adjustments */
    .content-container {
        margin-bottom: 40px;
        gap: 20px;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .text-content h3 {
        font-size: 1.4rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }

    .image-content {
        max-width: 100%; /* Use full width */
    }

    /* Stats Section Adjustments */
    .stats-section {
        padding: 50px 15px;
    }

    .stat-item {
        flex-basis: 100%; /* One item per row */
        margin: 10px 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-text {
        font-size: 1.1rem;
    }

    /* Loading Screen Adjustments */
    .loading-bar-container {
        width: 90%;
    }

    .logo {
        font-size: 3rem;
    }

    .logo-icon {
        font-size: 4rem;
    }

    .loading-text {
        font-size: 1.1rem;
    }

    .loading-message {
        font-size: 1rem;
    }
}

/* --------------------------------------------------------------------------
   Extra Small Mobile View (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .header-title {
        font-size: 2.2rem;
    }

    .header-subtitle {
        font-size: 1.1rem;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}