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

.container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

p {
    text-align: center;
    font-size: 16px;
    color: #555;
}

.section {
    margin-bottom: 25px;
}

.section h2 {
    color: #34495e;
    font-size: 22px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

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

ul li {
    background: #ecf0f1;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

ul li:hover {
    background: #d5dbdb;
    transition: 0.3s;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2c3e50;
    text-decoration: underline;
}

.cover {
    width: 75%;
    transition: opacity 0.3s ease-in-out;
}

.image-container {
    position: relative;
    width: 75%; /* Adjust size as needed */
    max-width: 800px; /* Optional: Limit max width */
}