/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding: 20px;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
    color: #333;
    transition: background-color 0.5s ease;
}
header, section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
header:hover, section:hover {
    transform: scale(1.02);
}
h1, h2, h3 {
    color: #2c3e50;
    transition: color 0.3s ease;
}
h1 {
    text-align: center;
    margin-bottom: 40px;
}
h2 {
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
} img { max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);}
ul {
    margin-top: 20px;
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}
.section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section-content > div {
    flex: 1 1 calc(33.333% - 20px);
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}
.section-content > div:hover {
    background-color: #e0e0e0;
}
.section-content > div a {
    text-decoration: none;
    color: inherit;
}
