.hero-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    color: #003B7E;
    font-size: 48px;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 100%;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.products-section {
    padding: 60px 0;
}

.products-section h2 {
    color: #003B7E;
    font-size: 36px;
    margin-bottom: 30px;
}

.products-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.filter-dropdown select {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card img {
    width: 100%;
    height: 225px;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
    margin-top: 30px;
}

.product-card h3 {
    color: #003B7E;
    font-size: 16px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /
}

.product-card h3 i {
    margin-top: 4px;
}

.product-link {
    display: inline-block;
    color: #003B7E;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border: 2px solid #003B7E;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: #003B7E;
    color: #fff;
}

/* Ürün detay kartları için stil */
.product-card p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .hero-section h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .product-card img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .product-card h3 {
        font-size: 14px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-section h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .product-card img {
        height: 300px;
    }
    
    .products-section {
        padding: 30px 0;
    }
}

/* Container padding for smaller screens */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
} 