body {
    margin: 0;
    font-family: 'montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: #349282;
}

a:hover {
    color: #1a544a;
    text-decoration: underline;
}


/* Header */

.header-container {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    padding: 20px;
}

.logo {
    width: 90px; 
    margin-bottom: 40px; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px; 
    padding: 0;
    margin: 0;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #349282;
    font-weight: bold;
}

.nav-links a:hover {
    color: #1a544a;
    text-decoration: underline;  
}


/*/Promo Banner */


.promo-banner {
    text-align: center;
    border-radius: 25px;     
    padding: 20px; 
    margin: 20px auto; 
    width: 80%;
    height: auto;
    background-image: url('images/promo-banner.jpg');
    background-size: cover;
    background-position: center;
    color:#f5f5f5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.promo-banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.promo-banner p {
    font-size: 1.2em;
    font-weight: bold ;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: scale(1.05);
}

.content-card img {
    border-bottom: 3px solid #349282;
    height: min-content;
}

.content-card h2 {
    margin: 20px 0 10px;
    color: #349282;
}

.content-card p {
    padding: 0 20px;
    margin: 0 0 20px;
    font-size: 1em;
    color: #1a544a;
}

.content-card a {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 10%;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 100px;
}

.footer-text p {
    margin: 0;
    font-size: 0.9em;
}
