/* Products Page Styles */
.products-main {
    margin-top: 80px;
}

.products-hero {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.products-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
}

.product-card p {
    padding: 0 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-features {
    padding: 0 1rem;
}

.product-features ul {
    list-style: none;
    margin-bottom: 1rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li:before {
    content: '✓';
    color: #3498db;
    position: absolute;
    left: 0;
}

.product-card .cta-button {
    display: block;
    margin: 1rem;
    text-align: center;
    background-color: #3498db;
    color: #fff;
}

.product-card .cta-button:hover {
    background-color: #2980b9;
}

.product-cta {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
    text-align: center;
    margin-top: 2rem;
}

.product-cta h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}
