
body {
    margin: 0;
    background: linear-gradient(#cc0000,#ccccff, #0000e6);
    background-attachment: fixed;
    font-family: Arial, sans-serif;
}
.navbar {
    background: #e60000;
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 5;
}
.navbar a {
    color: white;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
}
.navbar a:hover {
    text-decoration: underline;
    color: #0000e6;
}
.main-title {
    text-align: center;
    color: #e6f3ff;
    padding: 20px;
}
.bg {
    background: url("haiti-beach.webp") center/cover no-repeat;
    height: 300px;
    border-top: 4px solid #e6f3ff;
    border-bottom: 4px solid #e6f3ff;
    position: relative;
    z-index: 1;
}
.intro-box {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border: 3px solid #0000ff;
    border-radius: 10px;
    text-align: center;
}
.info-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.info-card {
    width: 250px;
    background: white;
    padding: 15px;
    border: 3px solid #0000ff;
    border-radius: 10px;
    text-align: center;
}

.info-card h3 {
    color: #0000ff;
}
.table-section {
    padding: 20px;
    text-align: center;
}
#infoTable {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
}
#infoTable th,
#infoTable td {
    border: 2px solid #0000ff;
    padding: 10px;
}
#infoTable th {
    background: #ccccff;
    font-weight: bold;
}
.footer {
    background: #e60000;
    padding: 10px;
    text-align: center;
    color: white;
}
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
    }

    #infoTable {
        width: 95%;
    }

    .bg {
        height: 200px;
    }
}
