/* Variables */
:root {
    --primary-color: #4a6bff;
    --secondary-color: #ff6b4a;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-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: white;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* Header & Navigation */
.hero {
    background: linear-gradient(135deg, #4a6bff 0%, #6b4aff 100%);
    color: white;
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

nav {
    padding: 20px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.logo span {
    color: var(--secondary-color);
}

/* Estilos para el byline del logo */
.logo-byline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    opacity: 0;
    animation: fadeInSlide 1.5s ease-in-out forwards;
    animation-delay: 0.3s;
}

.logo-byline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    position: relative;
}

.logo-byline strong {
    font-weight: 600;
}

.tech-highlight {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.logo-byline-decorator {
    display: inline-block;
    height: 1px;
    width: 15px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* Efecto de brillo en el texto */
.shine-text {
    position: relative;
    overflow: hidden;
}

.shine-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shineEffect 3s infinite;
}

@keyframes shineEffect {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Content */
.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0 40px;
    position: relative;
}

.hero-content {
    max-width: 50%;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-image {
    width: 45%;
    position: relative;
    z-index: 1;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-body {
    padding: 20px;
    position: relative;
    min-height: 300px;
}

.chart {
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.chart:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.chart:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--primary-color) 0%, transparent 100%);
    opacity: 0.3;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.data-grid:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.ai-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 107, 74, 0.3);
}

/* Challenges Section */
.challenges-section {
    background-color: white;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.challenge-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.challenge-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.challenge-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.challenge-card p {
    color: #6c757d;
}

/* Solution Section */
.solution-section {
    background-color: #f8f9fa;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
}

.solution-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    padding-top: 5px;
}

.solution-feature-content h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.solution-summary {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-color);
}

.solution-image {
    max-width: 800px;
    margin: 0 auto;
}

.ai-integration-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.intervals-icon, .ai-icon, .success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
}

.intervals-icon {
    background: linear-gradient(135deg, #4a6bff 0%, #6b4aff 100%);
}

.ai-icon {
    background: linear-gradient(135deg, #ff6b4a 0%, #ff4a6b 100%);
}

.success-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.plus-icon, .equals-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Benefits Section */
.benefits-section {
    background-color: white;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: #6c757d;
}

/* Modules Section */
.modules-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Botón de descarga del temario */
.download-syllabus {
    display: flex;
    justify-content: center;
    margin: 10px 0 30px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.download-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.download-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(74, 107, 255, 0.2);
}

/* Course Content Grid */
.course-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.course-module {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.course-module:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #6b4aff 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(74, 107, 255, 0.3);
}

.course-module h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.course-module p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .course-content-grid {
        grid-template-columns: 1fr;
    }
    
    .course-module {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* For Who Section */
.for-who-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.audience-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff4a6b 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(255, 107, 74, 0.3);
}

.audience-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.audience-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.prerequisites-container {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.prerequisites-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.prerequisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.prerequisite-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prerequisite-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.check-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.prerequisite-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .prerequisites-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para la nota aclaratoria */
.course-note-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.course-note {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid var(--primary-color);
}

.note-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.note-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.note-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.note-content strong {
    color: var(--dark-color);
}

/* Format Section */
.format-section {
    background-color: white;
}

.format-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.format-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.format-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.format-feature h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.format-feature p {
    color: #6c757d;
}

/* Instructor Section */
.instructor-section {
    background-color: #f8f9fa;
}

.instructor-profile {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.instructor-image {
    flex: 0 0 300px;
}

.instructor-image img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.instructor-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.instructor-bio {
    margin-bottom: 30px;
}

.instructor-credentials {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.instructor-credentials h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.instructor-credentials ul {
    padding-left: 20px;
}

.instructor-credentials li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Preregister Section */
.preregister-section {
    background: linear-gradient(135deg, #4a6bff 0%, #6b4aff 100%);
    color: white;
}

.preregister-section .section-title {
    color: white;
}

.preregister-section .section-title:after {
    background: white;
}

.preregister-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.preregister-content h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.preregister-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.preregister-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.preregister-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preregister-benefits i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.preregister-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* CTA Button Styles */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff4a6b 100%);
    color: white;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4a6b 0%, var(--secondary-color) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 74, 0.5);
}

.cta-button:hover:before {
    opacity: 1;
}

.cta-icon {
    margin-right: 12px;
    font-size: 1.4rem;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Pulse Animation */
.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 74, 0);
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 300px;
}

.footer-logo h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    opacity: 0.7;
}

.footer-links ul {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }
    
    .module-timeline:before {
        left: 20px;
    }
    
    .module-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }
    
    .module-number {
        left: 20px;
    }
    
    .module:nth-child(odd) .module-content:before,
    .module:nth-child(even) .module-content:before {
        left: -30px;
    }
    
    .instructor-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-credentials {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--dark-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: all 0.4s ease;
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-toggle {
        display: block;
        z-index: 101;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
}
