/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #ed8936; /* Bright Orange */
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.announcement-bar strong {
    text-decoration: underline;
}

/* Typography & Colors */
h1, h2, h3 {
    color: #0369a1; /* Brighter Ocean Blue */
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ed8936;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #dd6b20;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0284c7; /* Vibrant Blue */
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0284c7;
}

.btn-nav {
    background-color: #0284c7; /* Vibrant Blue */
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-nav:hover {
    background-color: #0369a1; /* Slightly darker for hover */
}

/* Hero Section */
.hero {
    /* Updated gradient to a bright, energetic blue overlay */
    background: linear-gradient(rgba(14, 165, 233, 0.8), rgba(2, 132, 199, 0.85)), url('https://images.unsplash.com/photo-1427504494785-3a9ca7044f45?auto=format&fit=crop&w=1500&q=80') center/cover;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2); /* Added subtle shadow for readability */
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* About Section & Features List */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background-color: #fff;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    background-color: #f0f9ff; /* Very light sky blue background */
    padding: 20px;
    border-left: 5px solid #0284c7; /* Vibrant Blue */
    border-radius: 4px;
}

/* Fix applied here to prevent line breaks on paragraph strong tags */
.feature-item > strong {
    display: block;
    color: #0284c7;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p strong {
    display: inline;
    color: #0369a1; /* Slightly darker blue for inline emphasis */
    font-size: inherit;
    margin-bottom: 0;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #4a5568;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Programs Section */
.programs {
    padding: 80px 5%;
    text-align: center;
}

.programs h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    margin: 20px 0 10px;
    color: #0284c7; /* Added bright blue to card headers */
}

.card p {
    padding: 0 20px 20px;
    color: #718096;
}

/* Footer */
footer {
    background-color: #0284c7; /* Bright vibrant blue footer */
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

footer h2 {
    color: #fff;
}

footer strong {
    color: #ffedd5; /* Soft orange/cream text for emphasis */
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #e0f2fe; /* Light blue text instead of gray */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
    }
    nav ul {
        display: none; 
    }
    .hero h1 {
        font-size: 2rem;
    }
    .announcement-bar {
        font-size: 0.9rem;
    }
}