/* Tarımsal Ürünler Sayfa Stilleri */
.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('tarim-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.agricultural-section {
    background-color: #f9f9f9;
}

.agricultural-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.agricultural-intro h2 {
    color: #FF9800; 
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.agricultural-intro h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #FF9800; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.agricultural-intro p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

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

.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    background-color: white;
}

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

.product-info p {
    color: #666;
    margin-bottom: 15px;
}

.product-info .btn-small {
    display: inline-block;
    background-color: #FF9800; 
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.product-info .btn-small:hover {
    background-color: #F57C00; 
}

/* İletişim Bölümü */
.contact-section {
    background-color: #fff3e0; 
    text-align: center;
    padding: 60px 0;
}

.contact-section h2 {
    color: #FF9800; 
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #FF9800; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #555;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #FF9800; 
}

.contact-buttons .btn:hover {
     background-color: #F57C00; 
}

.contact-buttons .btn i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}