html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #FED035;
    margin-top: 20px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #FED035;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #FED035;
    position: absolute;
    bottom: 0;
    left: 0;
}

p, ul {
    line-height: 1.7;
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.875rem;
    color: #777;
    margin-top: 40px;
}

.footer p {
    margin: 0;
}

/* Hover effect on sections */
section {
    padding: 10px 0;
}

/* Responsive for smaller devices */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 30px auto;
    }
    
    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    ul {
        padding-left: 15px;
    }

    ul li {
        font-size: 0.9rem;
    }
}

.button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #FED035;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin-top: 30px;
    display: block;
    width: 200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.button:hover {
    background-color: #ffc107;
}


.info-card {
    background-color: #fff9e6;
    padding: 20px;
    border: 1px solid #fed035;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #333;
}

.info-card p {
    line-height: 1.6;
    color: #555;
}
