
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.header {
    background-color: #a70363;
    color: white;
    padding: 20px;
    text-align: center;
}

.navbar {
    background-color: #ff8c00;
    padding: 15px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 3px solid transparent;
}

.navbar ul li a:hover {
    color: #f0e68c;
    border-bottom: 3px solid #f0e68c;
}

#president-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

#president-message .txt-msg {
    width: 60%;
    text-align: justify;
}

#president-message .img-msg {
    width: 35%;
    text-align: center;
}

#president-message img {
    max-width: 200px;
    border-radius: 50%;
}

.course-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.course-box {
    background-color: #ff8c00;
    padding: 15px;
    color: white;
    border-radius: 5px;
    text-align: center;
    width: 20%;
}

.map-section {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.map-section img {
    max-width: 100%;
    height: auto;
}

.map-section iframe {
    width: 600px;
    height: 400px;
    border: none;
}

.sponsors {
    text-align: center;
    margin: 50px 0;
}

.sponsors h2 {
    color: #a70363;
    font-size: 2rem;
    margin-bottom: 30px;
}

.sponsors img {
    max-width: 150px;
    margin: 10px;
}

footer {
    background-color: #a70363;
    color: white;
    padding: 20px;
    text-align: center;
}
