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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin-bottom: 50px;
}

header {
    background-color: #f39c12;
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f1c40f;
}

main {
    padding: 20px;
}

section {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

section h2 {
    color: #f39c12;
    font-size: 2rem;
    margin-bottom: 10px;
}

section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f39c12;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}
