/* Main Content Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.carousel {
    width: 100%;
    height: 400px;
    margin-top: 70px;
}
.carousel-inner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.message {
    text-align: center;
    margin-top: 20px;
}
h1 {
    font-size: 2em;
    color: #333;
}
p {
    font-size: 1.2em;
    color: #666;
}
.links {
    margin-top: 20px;
}
.links a {
    color: #28a745;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 10px;
}
.links a:hover {
    color: #1e7e34;
}
.description {
    text-align: center;
    margin: 20px 0;
    font-size: 1.2em;
    color: #666;
}
.social-media {
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
.social-media a {
    color: #28a745;
    text-decoration: none;
    font-size: 2em;
    margin: 0 15px;
    transition: color 0.3s;
}
.social-media a:hover {
    color: #1e7e34;
}