/* EVSEL PAGE SPECIFIC CSS */

.page-banner {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    /* Soft wave background is requested by design, just using a light gradient for now */
    background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
    border-bottom: 1px solid #eaeaea;
}

.page-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

/* Products Layout */
.product-wrapper {
    margin-bottom: 80px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    background-color: #f0f6fa;
    padding: 15px 25px;
    display: inline-block;
    border-left: 4px solid var(--secondary-blue);
    margin-bottom: 25px;
}

.product-desc {
    color: var(--primary-blue);
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 30px;
    font-weight: 300;
}

.specs-title {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.spec-item {
    font-size: 16px;
    color: var(--primary-blue);
    line-height: 1.5;
}

.spec-num {
    font-weight: 600;
}

.spec-detail {
    color: var(--text-light);
    /* using light gray text for sub-details to match color */
    display: block;
    padding-left: 20px;
    margin-top: 5px;
}

/* We want the numbers to be blue, and text slightly greyish or blueish */
.spec-item {
    color: var(--primary-blue);
}

.spec-item .spec-detail {
    color: #555;
}

.product-images {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}

.product-images img {
    max-width: 45%;
    border-radius: 8px;
    /* Placeholder styles below */
    min-height: 250px;
}

@media (max-width: 768px) {
    .product-images img {
        max-width: 100%;
    }
}