body {
    font-family: 'Segoe UI', 'Comic Sans MS', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #2d3436;
    background: #ffffff;
}

header {
    background: #ffffff;
    color: #2d3436;
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-bottom: 3px solid #FF7675;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #2d3436;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.mascot-icon {
    font-size: 3rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.logo:hover .mascot-icon {
    animation: spin 0.6s ease;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255,118,117,0.3);
}

.logo::before {
    content: '';
}

.logo::after {
    content: '';
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

nav li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

nav a {
    color: #2d3436;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    background: rgba(255,118,117,0.1);
    display: block;
}

nav a:hover {
    color: #2d3436;
    background: rgba(255,118,117,0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255,118,117,0.2);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #FFD93D;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

nav a:hover::after {
    width: 70%;
}

.hero {
    background: linear-gradient(135deg, rgba(255,118,117,0.6), rgba(74,224,155,0.6)), url('assets/hero-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    font-weight: 900;
    letter-spacing: 1px;
}

.hero-content h1::before {
    content: '🌈 ';
    display: inline;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background: white;
    color: #FF7675;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #FF7675;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(255,118,117,0.2);
}

.btn::before {
    content: '🦁';
    font-size: 1.5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255,118,117,0.3);
    background: #FF7675;
    color: white;
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
}

section h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

section h2::before {
    content: '🦁';
    display: inline-block;
    margin-right: 1rem;
    font-size: 2.8rem;
    animation: bounce 2s infinite;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #FF7675;
    border-radius: 2px;
}

section h3 {
    color: #2c3e50;
    font-weight: 700;
}

.features, .facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature, .facility {
    padding: 2.5rem;
    border-radius: 25px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-left: 5px solid #FF7675;
}

.feature:hover, .facility:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255,118,117,0.15);
    border-color: #FF7675;
    background: #FFF5F4;
}

.feature h3, .facility h3 {
    color: #FF7675;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.feature h3::before, .facility h3::before {
    content: '🦁';
    position: absolute;
    left: 0;
    font-size: 2rem;
    display: inline-block;
}

.learning-approach ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.learning-approach li {
    background: #FFF5F4;
    color: #FF7675;
    padding: 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    border-left: 4px solid #FF7675;
    text-shadow: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,118,117,0.1);
}

.learning-approach li:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.educators ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.educators li {
    margin: 1rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFE5CC, #FFE5E5);
    border-left: 6px solid #FF7675;
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.educators li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonials {
    background: #ffffff;
    color: #2d3436;
    padding: 5rem 2rem;
    border-radius: 30px;
    border-top: 5px solid #FF7675;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial {
    padding: 2.5rem;
    background: #FFF5F4;
    border-left: 5px solid #FF7675;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial cite {
    font-weight: 700;
    color: #FF7675;
    font-size: 1.1rem;
}

.location {
    background: #ffffff;
    padding: 5rem 2rem;
    border-radius: 30px;
    border-top: 5px solid #FF7675;
}

.location iframe {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
    border: none;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

footer {
    background: #ffffff;
    color: #2d3436;
    text-align: center;
    padding: 2.5rem;
    border-top: 3px solid #FF7675;
    font-weight: 600;
}

footer p {
    margin: 0.5rem 0;
}

footer p:last-child {
    color: #FF7675;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(37,211,102,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 35px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 10px 50px rgba(37,211,102,0.5);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(10deg);
    animation: none;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.gallery-grid img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.franchise-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit {
    padding: 2.5rem;
    border-radius: 25px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FF7675;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.option {
    padding: 2.5rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F4 100%);
    box-shadow: 0 10px 30px rgba(255,118,117,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-left: 5px solid #FF7675;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,118,117,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.option h3 {
    color: #FF7675;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.option p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255,118,117,0.15);
    border-left-color: #FF7675;
    background: linear-gradient(135deg, #ffffff 0%, #FFF0EF 100%);
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(255,118,117,0.1);
    border-top: 5px solid #FF7675;
}

form label {
    margin-top: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.6rem;
}

input, textarea, select {
    margin: 0.8rem 0;
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23FF7675" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

select option {
    padding: 0.8rem;
    background: #ffffff;
    color: #2d3436;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Flex Layout Classes */
.flex-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.flex-col {
    flex: 1;
}

.flex-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #FF7675;
    box-shadow: 0 0 0 3px rgba(255,118,117,0.1);
    background: #FFF5F4;
}

button {
    margin: 1.5rem 0;
    padding: 1.2rem 2.5rem;
    background: #FF7675;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255,118,117,0.2);
}

button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255,118,117,0.3);
    background: #FF5F5B;
}

button:active {
    transform: translateY(-1px);
}

footer {
    background: #ffffff;
    color: #2d3436;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 3px solid #FF7675;
    margin-top: 5rem;
}

footer p {
    margin: 0.5rem 0;
}

footer p:last-child {
    font-weight: 600;
    color: #FF7675;
}

.whatsapp-btn {
    position: fixed;
    bottom: 75px;
    right: 20px;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
    animation: pulse 2s infinite;
    z-index: 998;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37,211,102,0.4);
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37,211,102,0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37,211,102,0.5);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav ul {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    section h2::before {
        font-size: 1.6rem;
        margin-right: 0.4rem;
    }
    
    header {
        padding: 0.4rem 0;
        border-radius: 0;
    }
    
    nav {
        padding: 0 0.8rem;
        flex-wrap: wrap;
        gap: 0.6rem;
        max-width: 100%;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 0.9rem;
        flex-shrink: 0;
        gap: 0.3rem;
        min-width: fit-content;
    }
    
    .logo span:last-child {
        font-size: 0.85rem;
        font-weight: 700;
    }
    
    .mascot-icon {
        font-size: 1.3rem;
    }
    
    nav ul {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        margin-top: 0.4rem;
        order: 3;
    }
    
    nav li {
        flex: 0 1 calc(25% - 0.3rem);
    }
    
    nav a {
        font-size: 0.6rem;
        padding: 0.35rem 0.5rem;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        white-space: normal;
        text-align: center;
        background: rgba(255,118,117,0.08);
        transition: all 0.2s ease;
        line-height: 1.2;
    }
    
    nav a:hover {
        background: rgba(255,118,117,0.2);
        transform: scale(1.05);
    }
    
    .btn {
        gap: 0.5rem;
    }
    
    .btn::before {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    section h2::before {
        animation: bounce 2s infinite;
    }
    
    section h3 {
        font-size: 1.2rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .feature, .facility, .benefit, .option, .testimonial {
        padding: 1.5rem;
    }
    
    .feature h3, .facility h3 {
        font-size: 1.2rem;
        padding-left: 2.5rem;
    }
    
    .feature h3::before, .facility h3::before {
        font-size: 1.5rem;
    }
    
    .features, .facility-grid, .franchise-benefits, .contact-options, .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .learning-approach ul {
        grid-template-columns: 1fr;
    }
    
    .learning-approach li {
        padding: 1rem;
    }
    
    .educators ul {
        max-width: 100%;
    }
    
    .educators li {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-grid img {
        height: 200px;
        border-radius: 15px;
    }
    
    form {
        max-width: 100%;
    }
    
    input, textarea {
        margin: 0.6rem 0;
        padding: 1rem;
        font-size: 16px;
        border-radius: 12px;
    }
    
    button {
        margin: 1rem 0;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .location iframe {
        height: 300px;
        margin: 1.5rem 0;
    }
    
    footer {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    header {
        padding: 0.3rem 0;
    }
    
    nav {
        padding: 0 0.5rem;
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 0.8rem;
        gap: 0.2rem;
        order: 1;
        min-width: fit-content;
    }
    
    .logo span:last-child {
        font-size: 0.75rem;
        font-weight: 700;
        display: inline;
    }
    
    .mascot-icon {
        font-size: 1rem;
    }
    
    nav ul {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.25rem;
        justify-content: space-between;
        order: 2;
        margin-top: 0.3rem;
    }
    
    nav li {
        flex: 0 1 calc(20% - 0.2rem);
    }
    
    nav a {
        font-size: 0.5rem;
        padding: 0.2rem 0.25rem;
        width: 100%;
        text-align: center;
        border-radius: 6px;
        line-height: 1.1;
        background: rgba(255,118,117,0.08);
        flex-direction: column;
        gap: 0.1rem;
        transition: all 0.2s ease;
    }
    
    nav a:hover {
        background: rgba(255,118,117,0.15);
        transform: scale(1.05);
    }
    
    section {
        padding: 2rem 0.8rem;
    }
    
    section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    section h2::before {
        display: none;
    }
    
    section h3 {
        font-size: 1.05rem;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-content {
        padding: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .btn::before {
        display: none;
    }
    
    .feature, .facility, .benefit, .option {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .feature h3, .facility h3 {
        font-size: 1rem;
        padding-left: 1.8rem;
    }
    
    .feature h3::before, .facility h3::before {
        font-size: 1.1rem;
    }
    
    .feature p, .facility p {
        font-size: 0.85rem;
    }
    
    .learning-approach ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .learning-approach li {
        padding: 0.7rem;
        font-size: 0.8rem;
        border-radius: 12px;
    }
    
    .educators li {
        padding: 0.7rem;
        margin: 0.3rem 0;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.8rem;
    }
    
    .gallery-grid img {
        height: 130px;
        border-radius: 10px;
    }
    
    form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    form label {
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    
    input, textarea, select {
        margin: 0.5rem 0;
        padding: 0.9rem;
        font-size: 15px;
        border-radius: 10px;
    }
    
    button {
        margin: 1rem 0 0 0;
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 15px;
        width: 100%;
    }
    
    .location iframe {
        height: 220px;\n        margin: 0.8rem 0;\n    }\n    \n    footer {
        padding: 1rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 70px;
        right: 15px;
    }
}

@media (max-width: 360px) {
    header {
        padding: 0.25rem 0;
    }
    
    nav {
        padding: 0 0.3rem;
        gap: 0.2rem;
    }
    
    .logo {
        font-size: 0.7rem;
        gap: 0.15rem;
    }
    
    .logo span:last-child {
        font-size: 0.65rem;
    }
    
    .mascot-icon {
        font-size: 0.85rem;
    }
    
    nav ul {
        gap: 0.2rem;
        margin-top: 0.25rem;
    }
    
    nav li {
        flex: 0 1 calc(20% - 0.15rem);
    }
    
    nav a {
        font-size: 0.45rem;
        padding: 0.15rem 0.2rem;
        border-radius: 5px;
        gap: 0.08rem;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
    section h2::before {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .btn::before {
        font-size: 0.8rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 70px;
        right: 12px;
    }
}

form label {
    margin-top: 1rem;
    font-weight: bold;
}

form input, form select, form textarea {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    border-left: 5px solid #FF7675;
    transition: all 0.3s ease;
}

.program:nth-child(2) {
    border-left-color: #FDCB6E;
}

.program:nth-child(3) {
    border-left-color: #6C5CE7;
}

.program:nth-child(4) {
    border-left-color: #00B894;
}

.program:nth-child(5) {
    border-left-color: #FF7675;
}

.program:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .program-list {
        grid-template-columns: 1fr;
    }
    
    .program {
        padding: 1.2rem;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(255,255,150,0.3), rgba(255,182,193,0.3));
        border: 1px solid rgba(255,118,117,0.2);
    }
}

/* Touch-friendly for mobile devices */
@media (hover: none) and (max-width: 768px) {
    .btn, button, nav a {
        min-height: 48px;
        min-width: 48px;
    }
    
    input, textarea {
        font-size: 16px;
        min-height: 48px;
    }
}

/* Bottom Navigation for Mobile */
.bottom-nav {
    display: none;
}

@media (max-width: 480px) {
    /* Hide top navigation */
    nav ul {
        display: none;
    }
    
    /* Show bottom navigation */
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ffffff 0%, #FFF9F8 100%);
        border-top: 4px solid #FF7675;
        justify-content: space-around;
        align-items: stretch;
        padding: 0;
        z-index: 999;
        box-shadow: 0 -8px 30px rgba(255,118,117,0.15);
        height: 65px;
    }
    
    .nav-item {
        flex: 1;
        text-align: center;
        padding: 0.5rem 0;
        font-size: 0.55rem;
        color: #2d3436;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        border-radius: 0;
        margin: 0;
        line-height: 1.2;
        height: 100%;
        width: 100%;
        border-right: 1px solid rgba(255,118,117,0.1);
        cursor: pointer;
        background: transparent;
        border: none;
        font-family: inherit;
    }
    
    .nav-item:last-child {
        border-right: none;
    }
    
    .nav-icon {
        font-size: 1.8rem;
        display: block;
        line-height: 1;
    }
    
    .nav-label {
        font-size: 0.55rem;
        font-weight: 500;
        display: block;
        letter-spacing: 0.3px;
    }
    
    .bottom-nav .nav-item:hover {
        background: rgba(255,118,117,0.08);
        color: #FF7675;
        transform: translateY(-2px);
    }
    
    .bottom-nav .nav-item.active {
        background: linear-gradient(135deg, rgba(255,118,117,0.15) 0%, rgba(255,118,117,0.08) 100%);
        color: #FF7675;
    }
    
    .bottom-nav .nav-item.active .nav-icon {
        transform: scale(1.15);
    }
    
    .more-menu {
        position: relative;
    }
    
    .more-menu-toggle {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        padding: 0.5rem 0;
        height: 100%;
        width: 100%;
        border: none;
        background: transparent;
        font-family: inherit;
        font-size: 0.55rem;
        color: inherit;
        transition: all 0.25s ease;
        pointer-events: auto;
    }
    
    .more-menu-toggle:hover {
        background: rgba(255,118,117,0.08);
        color: #FF7675;
    }
    
    .more-menu-toggle.active {
        background: rgba(255,118,117,0.15);
        color: #FF7675;
    }
    
    .more-menu-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.85);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    .more-menu-popup.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .more-menu-popup a {
        padding: 1.5rem 2rem;
        text-align: center;
        font-size: 1rem;
        color: #ffffff;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        justify-content: center;
        font-weight: 600;
        letter-spacing: 0.5px;
        background: linear-gradient(135deg, rgba(255,118,117,0.9) 0%, rgba(255,118,117,0.75) 100%);
        border-radius: 20px;
        border: 2px solid rgba(255,255,255,0.3);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        min-width: 200px;
    }
    
    .popup-icon {
        font-size: 2.5rem;
    }
    
    .more-menu-popup a:hover {
        background: linear-gradient(135deg, rgba(255,118,117,1) 0%, rgba(255,118,117,0.85) 100%);
        transform: scale(1.05) translateY(-3px);
        box-shadow: 0 15px 40px rgba(255,118,117,0.4);
    }
    
    body {
        padding-bottom: 65px;
    }
}