*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --beige: #E9D9A8;
    --beige-light: #f5edda;
    --beige-lighter: #faf6ec;
    --dark: #3F3F3F;
    --orange: #E67E34;
    --orange-dark: #d06a22;
    --turquoise: #5FB6B1;
    --turquoise-dark: #4a9e99;
    --gray: #8A8A8A;
    --white: #ffffff;
    --off-white: #fdfcf8;
    --shadow-sm: 0 2px 8px rgba(63,63,63,0.06);
    --shadow-md: 0 8px 30px rgba(63,63,63,0.1);
    --shadow-lg: 0 20px 60px rgba(63,63,63,0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

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

ul {
    list-style: none;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    background: rgba(230, 126, 52, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 52, 0.35);
}

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

.btn-turquoise:hover {
    background: var(--turquoise-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 182, 177, 0.35);
}

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

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

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

.btn-white:hover {
    background: var(--beige-lighter);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(253, 252, 248, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content:flex-end;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--orange-dark);
    box-shadow: 0 4px 15px rgba(230, 126, 52, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(160deg, var(--beige-lighter) 0%, var(--beige-light) 50%, var(--off-white) 100%);
    overflow: hidden;
    padding-top: 20px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--orange);
    top: -150px;
    right: -100px;
    filter: blur(80px);
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--turquoise);
    bottom: -100px;
    left: -80px;
    filter: blur(70px);
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--beige);
    top: 40%;
    left: 50%;
    filter: blur(60px);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--turquoise);
    background: rgba(95, 182, 177, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
    border-radius: 24px;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-content h1 span {
    color: var(--orange);
    position: relative;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat strong {
    display: block;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.stat span {
    font-size: 0.82rem;
    color: var(--gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--beige);
}

.hero-visual {
    position: relative;
}

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

.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    width: 100%;
    height: 450px;
    box-shadow: var(--shadow-lg);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.hero-float-card i {
    font-size: 1.4rem;
    color: var(--orange);
    flex-shrink: 0;
}

.hero-float-card strong {
    display: block;
    font-size: 0.85rem;
}

.hero-float-card span {
    font-size: 0.75rem;
    color: var(--gray);
}

.float-card-1 {
    top: 30px;
    left: -30px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 2s;
}

.float-card-2 i {
    color: var(--turquoise);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid var(--gray);
    border-radius: 14px;
    position: relative;
}

.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 26px; }
}

.about {
    padding: 120px 0;
}

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

.about-images {
    position: relative;
    overflow: visible;
}

.about-img-main img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    width: 100%;
    height: 400px;
    box-shadow: var(--shadow-md);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 200px;
    border: 6px solid var(--off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-accent-box {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--orange);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 25px rgba(230, 126, 52, 0.35);
}

.accent-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.accent-text {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(230, 126, 52, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--orange);
}

.feature-icon.turquoise {
    background: rgba(95, 182, 177, 0.1);
}

.feature-icon.turquoise i {
    color: var(--turquoise);
}

.about-feature strong {
    display: block;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
}

.about-feature span {
    font-size: 0.82rem;
    color: var(--gray);
}

.courses {
    padding: 120px 0;
    background: var(--beige-lighter);
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.course-img {
    position: relative;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover .course-img img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-badge.turquoise {
    background: var(--turquoise);
}

.course-body {
    padding: 32px;
}

.course-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.course-body > p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.course-details {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark);
}

.course-details i {
    color: var(--turquoise);
    font-size: 0.75rem;
}

.methodology {
    padding: 120px 0;
}

.methodology-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.methodology-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 20px;
}

.methodology-content p {
    color: var(--gray);
    font-size: 1rem;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.step-number.turquoise {
    color: var(--turquoise);
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

.cta-section {
    padding: 20px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -60px;
    left: 80px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 480px;
}

.cta-box .btn-white {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    flex-shrink: 0;
}

.testimonials {
    padding: 120px 0;
    background: var(--beige-lighter);
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #f0b429;
    font-size: 0.85rem;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-avatar.turquoise {
    background: var(--turquoise);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--gray);
}

.contact {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 126, 52, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--orange);
}

.contact-icon.turquoise {
    background: rgba(95, 182, 177, 0.1);
}

.contact-icon.turquoise i {
    color: var(--turquoise);
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--orange);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--orange-dark);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--beige-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-social i {
    font-size: 1.1rem;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    display: block;
}

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(1.5);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit a {
    color: var(--orange);
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--turquoise);
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-wp 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wp {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 540px;
        margin: 0 auto;
    }

    .float-card-1 {
        left: 10px;
    }

    .float-card-2 {
        right: 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .methodology-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 85vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-float-card {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

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

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .about-img-secondary {
        display: none;
    }

    .about-accent-box {
        position: static;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 16px;
        border-radius: var(--radius-md);
        padding: 14px 20px;
    }

    .accent-number {
        font-size: 1.5rem;
    }

    .hero-image-wrapper img {
        height: 260px;
    }

    .course-body {
        padding: 20px;
    }

    .cta-box {
        padding: 36px 20px;
    }

    .testimonial-card {
        padding: 24px;
    }
}