/* Global Styles */
body {
    font-family: 'minhafonte';
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #04dcdc;
    color: #f4f4f4;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

header .logo img {
    max-width: 200px;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 10px;
}

header nav ul li a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 22px;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f4f4f4;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel {
        width: 100%;
    }
}

/* Section Styles */
.section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
    color: #2e3594;
}

.section h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.section p {
    font-size: 22px;
    line-height: 1.6;
}

.image-with-description {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.image-with-description img {
    max-width: 250px;
    height: auto;
}

.description {
    max-width: 550px;
}

.description h1 {
    margin-top: 0;
    font-size: 35px;
    color: #2e3594;
}

.description ul {
    list-style-type: disc;
    padding-left: 20px;
}

.description ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #04dcdc;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    margin: 0 10px;
}
