
.explore-products {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    text-align: center;
    margin-bottom: 32px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.product-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
}
.product-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.product-image {
    margin-bottom: 20px;
    text-align: center;
}
.product-image img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    border-radius: 12px;
}
.product-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0047AB;
    margin-bottom: 16px;
}
.product-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 16px;
}
.product-formats {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555555;
    margin-bottom: 24px;
}
.product-formats strong {
    font-weight: 600;
    color: #333333;
}
.product-btn {
    display: inline-block;
    background-color: #0047AB;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s;
}
.product-btn:hover {
    background-color: #003580;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-card {
        padding: 20px 16px;
    }
    .product-title {
        font-size: 20px;
    }
    .product-image img {
        max-height: 140px;
    }
}
