.page-title {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-title h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 18px;
    opacity: 0.9;
}

.products-section {
    padding: 60px 20px;
    background-color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 20px;
    color: #1e40af;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.product-info .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
