body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    color: #000142;
    line-height: 1.6;
}

header {
    background-color: #000142;
    color: white;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.content {
    margin: 0 40px;
    padding: 0;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    height: 60px;
    margin-right: 15px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f2a365;
}

.intro {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.intro h1 {
    color: #000142;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro .subtext {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.intro .offer {
    font-size: 1.5em;
    color: #f05454;
    font-weight: bold;
    margin-top: 20px;
}

.carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px;
}

.carousel-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.carousel-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #000142;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.carousel-link:hover {
    background-color: #f05454;
}

.banner {
    background-color: #000142;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin: 40px 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.banner h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.banner-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #000142;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.banner-link:hover {
    background-color: #f05454;
    color: white;
}

footer {
    background-color: #000142;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f2a365;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .intro h1 {
        font-size: 2em;
    }

    .banner h2 {
        font-size: 1.5em;
    }

    .banner p {
        font-size: 1em;
    }
}
