/* overview.css - Page-specific styles for Overview page */
.hero-banner {
    position: relative;
    text-align: center;
    color: white;
}
.hero-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}
.cta-button, .link-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d4a574; /* terracotta color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.cta-button:hover, .link-button:hover {
    background-color: #b38b5e;
}
.experience-icons, .pillars-container, .contents-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.icon-item, .pillar, .content-item {
    text-align: center;
    margin: 10px;
}
.award-images img {
    max-width: 100px;
    margin: 10px;
}
@media (max-width: 768px) {
    .hero-content {
        width: 80%;
    }
    .experience-icons, .pillars-container, .contents-grid {
        flex-direction: column;
        align-items: center;
    }
}