@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #4ca1af, #c4e0e5);
    color: #495057;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.webp') no-repeat center center/cover;
    height: 60vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

main {
    padding: 3rem 0;
}

section {
    background: #fff;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #3a8a99;
    margin-bottom: 2rem;
}

a {
    color: #4ca1af;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

#about p {
    font-size: 1.1rem;
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 25px;
    border-radius: 30px;
    background-color: #4ca1af;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-links a:hover {
    background-color: #3a8a99;
    transform: translateY(-3px);
    text-decoration: none;
}

.contact-links i {
    font-size: 1.2rem;
}

.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.meeting-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 2rem;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.meeting-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #4ca1af;
}

.meeting-card h3 {
    margin-top: 0;
    color: #4ca1af;
    font-size: 1.5rem;
}

footer {
    text-align: center;
    padding: 2.5rem 0;
    background: #3a8a99;
    color: #fff;
    margin-top: 3rem;
}