/* Color Palette & Variables */
:root {
    color-scheme: light;

    /* Primary Accent */
    --clr-burgundy: #800000;
    --clr-burgundy-light: #9e1a1a;
    --clr-burgundy-dark: #5c0000;
    
    /* Secondary/Neutrals */
    --clr-cream: #f9f6f0;
    --clr-beige: #eaddd3;
    
    /* Base & Text */
    --clr-white: #ffffff;
    --clr-dark-brown: #3e2723;
    --clr-brown-light: #5d4037;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(62, 39, 35, 0.6) 0%, rgba(128, 0, 0, 0.5) 100%);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--clr-dark-brown);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-dark-brown);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--clr-burgundy);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.heading-symbol {
    height: 1.4em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--clr-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
}

.btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-dark-brown);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .mobile-menu-btn {
    color: var(--clr-dark-brown);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #4e0012;
    letter-spacing: 0.5px;
}

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

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

.nav-links a {
    color: #4e0012;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

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

.nav-btn {
    background-color: var(--clr-burgundy);
    color: var(--clr-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
}

.nav-btn:hover {
    background-color: var(--clr-burgundy-light);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    color: #4e0012;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-close-btn {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-el {
    position: absolute;
    color: #4e0012;
    opacity: 0.8;
    font-size: 3rem;
    animation: floatPlayful linear infinite;
    will-change: transform;
}

@keyframes floatPlayful {
    0% { transform: translateY(110vh); }
    100% { transform: translateY(-20vh); }
}

/* Individual elements in unique lanes to prevent collision - same speed */
.el-1 { left: 50.8%; animation-duration: 35s; animation-delay: -2s; font-size: 1.8rem; }
.el-2 { left: 52.0%; animation-duration: 35s; animation-delay: -15s; font-size: 2.2rem; }
.el-3 { left: 53.2%; animation-duration: 35s; animation-delay: -30s; font-size: 1.6rem; }
.el-4 { left: 54.4%; animation-duration: 35s; animation-delay: -5s; font-size: 2.0rem; }
.el-5 { left: 55.6%; animation-duration: 35s; animation-delay: -25s; font-size: 1.5rem; }
.el-6 { left: 56.8%; animation-duration: 35s; animation-delay: -10s; font-size: 2.4rem; }
.el-7 { left: 58.0%; animation-duration: 35s; animation-delay: -40s; font-size: 1.9rem; }
.el-8 { left: 59.2%; animation-duration: 35s; animation-delay: -18s; font-size: 1.7rem; }
.el-9 { left: 60.4%; animation-duration: 35s; animation-delay: -12s; font-size: 2.1rem; }
.el-10 { left: 61.6%; animation-duration: 35s; animation-delay: -35s; font-size: 1.6rem; }
.el-11 { left: 62.8%; animation-duration: 35s; animation-delay: -3s; font-size: 2.5rem; }
.el-12 { left: 64.0%; animation-duration: 35s; animation-delay: -22s; font-size: 1.8rem; }
.el-13 { left: 65.2%; animation-duration: 35s; animation-delay: -8s; font-size: 1.7rem; }
.el-14 { left: 66.4%; animation-duration: 35s; animation-delay: -28s; font-size: 2.0rem; }
.el-15 { left: 67.6%; animation-duration: 35s; animation-delay: -14s; font-size: 1.6rem; }
.el-16 { left: 68.8%; animation-duration: 35s; animation-delay: -32s; font-size: 2.2rem; }
.el-17 { left: 70.0%; animation-duration: 35s; animation-delay: -19s; font-size: 2.3rem; }
.el-18 { left: 71.2%; animation-duration: 35s; animation-delay: -6s; font-size: 1.8rem; }
.el-19 { left: 72.4%; animation-duration: 35s; animation-delay: -38s; font-size: 2.1rem; }
.el-20 { left: 73.6%; animation-duration: 35s; animation-delay: -11s; font-size: 1.9rem; }
.el-21 { left: 74.8%; animation-duration: 35s; animation-delay: -24s; font-size: 1.7rem; }
.el-22 { left: 76.0%; animation-duration: 35s; animation-delay: -4s; font-size: 2.2rem; }
.el-23 { left: 77.2%; animation-duration: 35s; animation-delay: -17s; font-size: 1.5rem; }
.el-24 { left: 78.4%; animation-duration: 35s; animation-delay: -33s; font-size: 2.0rem; }
.el-25 { left: 79.6%; animation-duration: 35s; animation-delay: -9s; font-size: 2.3rem; }
.el-26 { left: 80.8%; animation-duration: 35s; animation-delay: -27s; font-size: 1.6rem; }
.el-27 { left: 82.0%; animation-duration: 35s; animation-delay: -39s; font-size: 1.9rem; }
.el-28 { left: 83.2%; animation-duration: 35s; animation-delay: -1s; font-size: 1.8rem; }
.el-29 { left: 84.4%; animation-duration: 35s; animation-delay: -21s; font-size: 2.3rem; }
.el-30 { left: 85.6%; animation-duration: 35s; animation-delay: -13s; font-size: 1.6rem; }
.el-31 { left: 86.8%; animation-duration: 35s; animation-delay: -31s; font-size: 2.4rem; }
.el-32 { left: 88.0%; animation-duration: 35s; animation-delay: -7s; font-size: 1.8rem; }
.el-33 { left: 89.2%; animation-duration: 35s; animation-delay: -36s; font-size: 2.0rem; }
.el-34 { left: 90.4%; animation-duration: 35s; animation-delay: -16s; font-size: 2.5rem; }
.el-35 { left: 91.6%; animation-duration: 35s; animation-delay: -29s; font-size: 1.7rem; }
.el-36 { left: 92.8%; animation-duration: 35s; animation-delay: -5s; font-size: 2.1rem; }
.el-37 { left: 94.0%; animation-duration: 35s; animation-delay: -23s; font-size: 1.5rem; }
.el-38 { left: 95.2%; animation-duration: 35s; animation-delay: -37s; font-size: 1.9rem; }
.el-39 { left: 96.4%; animation-duration: 35s; animation-delay: -20s; font-size: 2.4rem; }
.el-40 { left: 97.6%; animation-duration: 35s; animation-delay: -2s; font-size: 2.1rem; }

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #513130;
    max-width: 520px;
    padding: 0 2rem;
    margin-left: 6%;
    margin-right: auto;
}

.hero h1 {
    font-size: 3rem;
    color: #513130;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero .highlight {
    color: #513130;
    font-style: italic;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    max-width: 440px;
    color: #513130;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.hero-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.hero-actions .btn-secondary {
    border-color: #513130;
    color: #513130;
}

.hero-actions .btn-secondary:hover {
    background-color: #513130;
    color: #e7d6c2;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--clr-cream);
}

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

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    padding: 2rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(128, 0, 0, 0.2);
    border: 8px solid var(--clr-cream);
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--clr-brown-light);
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-features i {
    color: var(--clr-burgundy);
    font-size: 1.5rem;
}

/* Certifications Section */
.certifications {
    padding: 8rem 0;
    background-color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 0, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.certifications::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 221, 211, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cert-card {
    position: relative;
    background-color: var(--clr-cream);
    border-radius: 12px;
    padding: 2.5rem 2rem 2.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border: 1px solid rgba(234, 221, 211, 0.6);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(62, 39, 35, 0.1);
    border-color: rgba(128, 0, 0, 0.15);
}

.cert-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-burgundy), var(--clr-burgundy-light), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cert-card:hover .cert-decoration {
    opacity: 1;
}

.cert-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--clr-burgundy), var(--clr-burgundy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cert-card:hover .cert-icon-wrapper {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 28px rgba(128, 0, 0, 0.25);
}

.cert-content {
    flex: 1;
}

.cert-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--clr-dark-brown);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.cert-institution {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-burgundy);
    margin-bottom: 0.75rem;
    padding: 0.2rem 0.6rem;
    background-color: rgba(128, 0, 0, 0.08);
    border-radius: 4px;
}

.cert-content p {
    font-size: 0.95rem;
    color: var(--clr-brown-light);
    line-height: 1.65;
}

/* Success Section */
.success {
    padding: 8rem 0;
    background-color: var(--clr-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-brown-light);
    font-size: 1.1rem;
}

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

.testimonial-card {
    background-color: var(--clr-cream);
    padding: 3rem 2rem;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--clr-brown-light);
    margin-bottom: 2rem;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.student-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--clr-beige);
    color: var(--clr-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.student-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.student-info span {
    font-size: 0.85rem;
    color: var(--clr-brown-light);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--clr-beige);
    position: relative;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
}

.contact-card {
    background-color: var(--clr-dark-brown);
    border-radius: 16px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(62, 39, 35, 0.1);
}

.contact-info {
    background-color: var(--clr-dark-brown);
    color: var(--clr-white);
    padding: 4rem;
}

.contact-info h2 {
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.contact-info p {
    opacity: 0.8;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.method i {
    font-size: 1.5rem;
    color: var(--clr-beige);
}

.method a {
    transition: var(--transition);
}

.method a:hover {
    color: var(--clr-beige);
}

.btn-formulario {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1rem 2.5rem;
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.btn-formulario:hover {
    background-color: #600000;
    color: var(--clr-white);
}

.contact-form {
    padding: 4rem;
    background-color: var(--clr-white);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-dark-brown);
    transition: var(--transition);
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-burgundy);
    background-color: var(--clr-white);
    box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.25rem;
}

/* Footer */
footer {
    background-color: var(--clr-dark-brown);
    color: var(--clr-white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-brand h3 {
    color: var(--clr-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    color: var(--clr-burgundy);
}

.footer-brand p {
    color: var(--clr-beige);
    opacity: 0.8;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s !important; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s !important; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Classes (Handled by JS) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--clr-white);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a:not(.nav-btn) {
        color: var(--clr-dark-brown) !important;
        font-size: 1.25rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: #4e0012;
        cursor: pointer;
    }
    
    .navbar.scrolled .mobile-menu-btn {
        color: var(--clr-dark-brown);
    }

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

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
        bottom: -20px;
        right: -20px;
    }
    
    .experience-badge .years {
        font-size: 1rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }

    .certifications {
        padding: 5rem 0;
    }

    .cert-card {
        padding: 1.75rem 1.25rem;
        gap: 1rem;
    }

    .cert-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        border-radius: 10px;
    }

    .cert-content h3 {
        font-size: 1.1rem;
    }

    .cert-content p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .success {
        padding: 5rem 0;
    }

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

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .contact {
        padding: 5rem 0;
    }

    .contact-info {
        padding: 2.5rem 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }
}
