body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
    background: url('111521477_p0.png') no-repeat center top fixed;
    background-size: cover;
    color: #e0e0e0;
}

header {
    text-align: center;
    padding: 20px;
    background-color: rgba(31, 31, 31, 0.9); /* Semi-transparent background */
    color: #e74c3c;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    background: rgba(31, 31, 31, 0.9); /* Semi-transparent background */
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex: 1 1 calc(50% - 40px);
    box-sizing: border-box;
}

section h2 {
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #e74c3c;
}

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

li {
    margin-bottom: 10px;
}

a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    line-height: 1.6;
}

p strong {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 2px; /* Reduced padding */
    background-color: rgba(31, 31, 31, 0.9); /* Semi-transparent background */
    color: #e0e0e0;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 0.8em; /* Smaller font size */
}

footer a {
    color: #e74c3c;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0 10px;
    }

    section {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}
