:root {
    --primary-color: #2563eb;
    --primary-dark: #1dd8a0;
    --secondary-color: #3b82f6;
    --main-color: #347ce7;
    --alt-color: #31c2af;
    --social-links: #f8fafc;
    --accent-color: #60a5fa;
    --background-color: #f8fafc;
    --text-color: #1e293b;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

.week-container {
    text-align: center;
    max-width: 2100px;
    margin: 0 auto;
}


.week-container h1 {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.week-container > p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.slider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.slider-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    min-width: 260px;
    max-width: 600px;
}

.slider-media img,
.slider-media video {
    width: 100%;
    height: auto;
    margin: 0;
    aspect-ratio: 15/10;
    object-fit: cover;
    border: solid var(--main-color) 10px;
    border-radius: 4%;
    margin-top: 4rem;
    margin-bottom: 0.5rem;
}

.slider-media .description {
    display: block;
    text-align: center;
    margin-top: 0.2rem;
    margin-bottom: 2rem;
    max-width: 90%;
    font-size: 1rem;
    color: var(--main-color, #222);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--main-color), var(--alt-color));
    color: white;
    border: white;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    margin-left: 70rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.cta-button:hover {
    background: transparent;
    border: 2px solid #3188c2;
    color:#3188c2;
    box-shadow: var(--shadow-lg);
}


@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem;
    }

    .header nav {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    #team h1 {
        font-size: 2rem;
    }

    #team p {
        font-size: 1.1rem;
    }

    .team-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    .team-member {
        padding: 1.5rem;
        max-width: 100%;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section p i {
        margin-right: 0;
        margin-bottom: 0.5rem;
        display: block;
    }
}

@media (max-width: 900px) {
    .slider {
        flex-direction: column;
        align-items: center;
    }
    .slider-media {
        width: 90%;
        max-width: 100%;
    }
}