body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: white;
}

header {
    color: rgb(0, 0, 0);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    margin-left: 25px;
    width: 70px;
    height: auto;
}

nav {
    text-align: right;
    padding: 10px 0;
    padding-right: 100px;
}

nav a {
    color: black;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.8em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #004080;
    font-weight: 600;
}

.slider {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-bottom: 10px solid #000000;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slider .prev,
.slider .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: 10;
}

.slider .prev {
    left: 10px;
}

.slider .next {
    right: 10px;
}

.container {
    padding: 20px;
    text-align: center;
}

.info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.card img {
    max-width: 100%;
    height: auto;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 30px;
    color: #004080;
}

footer {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.card-desc,
p {
    font-size: 1.2em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

p {
    text-align: center;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

ul li {
    margin-bottom: 0.5em;
}

b {
    color: black;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.side-menu a {
    padding: 15px;
    text-decoration: none;
    font-size: 22px;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover,
.side-menu .close-btn {
    color: #00ffff;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.side-menu.open + .overlay {
    display: block;
    animation: fadeInOverlay 0.5s ease-in forwards;
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    nav {
        display: none;
    }

    .card-container {
        width: 100%;
        padding: 0 10px;
    }

    .card {
        min-width: 200px;
        max-width: 240px;
    }

    .section-title {
        font-size: 2em;
    }

    header img {
        margin-left: 10px;
    }
}