/* Import Stylesheet */
@import url('style.css');

/* Overview Header */
.overview-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../assets/image/img_overview_header.png') no-repeat center center/cover;
    color: var(--white-color);
}

.overview-header h2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* Overview Body */
.overview-section h2 {
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

/* Overview Content */
.overview-body .row {
    display: flex;
    flex-wrap: wrap;
}

.overview-body img {
    width: 100%;
    max-width: 500px;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.overview-title {
    border-right: 5px solid var(--secondary-color);
    margin-bottom: 15px;
}
.overview-body p {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overview-body .row {
        flex-direction: column;
    }
}
