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

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

h1,
h2,
h3 {
    text-align: center;
    margin-bottom: 20px;
}

.content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222222;
    color: #ffffff;
    padding: 30px;
}

.footer-left,
.footer-right {
    flex: 1;
    text-align: center;
}

.footer-left p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.5em;
    transition: all 0.3s ease;
}

.social-links a:hover {
    text-decoration: none;
    color: #ffcc00;
    transform: translateY(-2px);
}
