/* General Overview Section */
#overview {
    padding: 4rem 0;
    background-color: #f9fafb; /* Slightly lighter gray for differentiation */
}

#overview h2 {
    font-size: 2.25rem; /* Tailwind's text-4xl */
    font-weight: 700; /* Tailwind's font-bold */
    text-align: center;
    margin-bottom: 2rem;
}

#overview p {
    font-size: 1.125rem; /* Tailwind's text-lg */
    font-weight: 300; /* Tailwind's font-light */
    text-align: center;
    max-width: 48rem; /* Tailwind's max-w-3xl */
    margin: 0 auto 3rem auto;
    color: #4b5563; /* Tailwind's gray-600 */
    line-height: 1.6; /* Slightly increased for readability */
}

/* Card Grid */
#overview .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem; /* Reduced gap for better flow */
}

@media (min-width: 768px) {
    #overview .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #overview .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styles */
#overview .card {
    padding: 1.5rem; /* Tailwind's p-6 */
    background-color: #ffffff; /* White */
    border-radius: 8px; /* Slightly more rounded */
    border: 1px solid #e5e7eb; /* Lighter border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.4;
}

#overview .card:hover {
    transform: translateY(-6px); /* Enhanced hover lift */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
}

#overview .card h3 {
    font-size: 1.25rem; /* Tailwind's text-xl */
    font-weight: 600; /* Tailwind's font-semibold */
    margin-bottom: 1rem; /* More space under title */
    color: #1f2937; /* Tailwind's gray-800 */
}

#overview .card p {
    font-size: 1rem; /* Tailwind's text-base */
    color: #6b7280; /* Tailwind's gray-500 */
    margin-bottom: 1rem;
}

#overview .card a {
    font-size: 1rem; /* Tailwind's text-base */
    font-weight: 600; /* Tailwind's font-semibold */
    color: #0284c7; /* Blue-Gray-500 from Tailwind */
    text-decoration: none;
    transition: color 0.3s ease;
}

#overview .card a:hover {
    color: #0369a1; /* Tailwind's Blue-Gray-700 */
    text-decoration: underline;
}

/* Newsroom Section */
.newsroom-container {
    margin-top: 2rem; /* Adds spacing above newsroom */
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.newsroom-container .news-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px; /* Increased padding for balance */
    border-bottom: 1px solid #e5e7eb; /* Matches the lighter border */
}

.newsroom-container .news-item:last-child {
    border-bottom: none;
}

.newsroom-container .news-date {
    flex: 0 0 100px; /* Slightly more space for date */
    font-size: 0.875rem; /* Tailwind's text-sm */
    color: #9ca3af; /* Tailwind's gray-400 */
    text-align: left;
}

.newsroom-container .news-details {
    flex: 1;
    padding-left: 16px;
}

.newsroom-container .article-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 6px; /* Reduced spacing */
    line-height: 1.5; /* Better readability */
}

.newsroom-container .news-link {
    text-decoration: none;
    color: #475569;
}
.newsroom-container .news-link:hover {
    text-decoration: underline;
}

.newsroom-container .news-excerpt {
    font-size: 0.9rem; /* Slightly smaller for balance */
    color: #6b7280;
    margin: 0;
}

/* Visual Unification */
#overview .card, .newsroom-container .news-item {
    transition: all 0.2s ease;
}

#overview .card:hover, .newsroom-container .news-item:hover {
    transform: translateY(-2px); /* Subtle hover lift for both */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shared hover shadow */
}








/*                                       */
/*             Contact banner            */
/*                                       */



#contact-banner {
    background-color: #98AFC7;
    color: #ffffff; /* White text for contrast */
    padding: 3rem 1rem;
    text-align: center;
    margin-top: 2rem; /* Adds spacing above the banner */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

#contact-banner .contact-content {
    max-width: 48rem; /* Limit content width */
    margin: 0 auto; /* Center content */
}

#contact-banner .contact-title {
    font-size: 2rem; /* Tailwind's text-3xl */
    font-weight: 700; /* Tailwind's font-bold */
    margin-bottom: 1rem;
}

#contact-banner .contact-description {
    font-size: 1.125rem; /* Tailwind's text-lg */
    font-weight: 300; /* Tailwind's font-light */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

#contact-banner .contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #64748b; 
    color: #ffffff;
    font-size: 1rem; /* Tailwind's text-base */
    font-weight: 600; /* Tailwind's font-semibold */
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#contact-banner .contact-button:hover {
    background-color: #475569;
}

