.products-section {
    padding: 60px 0;
    background-color: #0056b3;
    color: white;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 280px;
    margin-bottom: 30px;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 600;
}

.product-description {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 15px;
    display: block;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
}

.product-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c853;
}

.product-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #0056b3;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.product-button:hover {
    background-color: #003d7a;
}
