body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background: #FFF7E6;
    color: #333;
}

/* HEADER */
header {
    background: linear-gradient(90deg, #FFB703, #FB8500);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 6px solid #00A6FB;
    animation: popin 0.6s ease;
}

@keyframes popin {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

header img {
    width: 160px;
}

nav {
    background: #0081A7;
    padding: 14px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

section {
    padding: 60px 12%;
}

h2 {
    font-family: 'Poppins';
    font-size: 32px;
    color: #FB8500;
}

.box {
    background: white;
    padding: 25px;
    margin-top: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: rise 0.5s ease;
}

@keyframes rise {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

footer {
    background: #00A6FB;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}
