.product-section {
  padding: 60px 0;
  background: #fafafa;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.product-card:hover .overlay {
  opacity: 1;
}

.view-icon {
  color: #fff;
  font-size: 28px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.product-card:hover .view-icon {
  transform: scale(1);
}

.product-content {
  padding: 18px;
  text-align: left;
}

.product-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-content h3 a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-content h3 a:hover {
  color: #0078ff;
}

.product-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .product-content h3 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .product-card {
    margin-bottom: 25px;
  }
}


    .faq-section {
        margin: 40px auto;
        padding: 0 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .faq-title {
        text-align: center;
        font-size: 32px;
        color: #0b5844;
        margin-bottom: 40px;
        font-weight: 700;
    }

    .faq-item {
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid #e0e0e0;
    }

    .faq-question {
        background-color: #f5f5f5;
        padding: 18px 25px;
        cursor: pointer;
        font-weight: 600;
        color: #333;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background-color: #e9e9e9;
    }

    .faq-question::after {
        content: '+';
        font-size: 24px;
        color: #0b5844;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
        content: '-';
    }

    .faq-answer {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        background-color: #fff;
    }

    .faq-item.active .faq-answer {
        padding: 20px 25px;
        max-height: 500px;
    }

    @media (max-width: 768px) {
        .faq-title {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .faq-question {
            padding: 15px 20px;
            font-size: 15px;
        }

        .faq-item.active .faq-answer {
            padding: 15px 20px;
        }
    }

    .scrap-section {
        background-color: #f9f9f9;
        padding: 40px 0;
    }

    .scrap-title-main {
        font-size: 28px;
        color: #0b5844;
        margin-bottom: 40px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 15px;
    }

    .scrap-title-main:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #0b5844;
    }

    .scrap-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .scrap-card {
        background-color: #fff;
        padding: 25px 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #e0e0e0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .scrap-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #0b5844;
    }

    .scrap-icon {
        font-size: 36px;
        margin-bottom: 15px;
        color: #0b5844;
    }

    .scrap-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0;
        text-align: center;
    }

    @media (max-width: 768px) {
        .scrap-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }

        .scrap-title-main {
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .scrap-grid {
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
        }

        .scrap-card {
            padding: 15px 10px;
        }

        .scrap-icon {
            font-size: 28px;
        }

        .scrap-title {
            font-size: 14px;
        }
    }


    .district-section {
        padding: 40px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    }

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

    .district-title {
        text-align: center;
        font-size: 32px;
        color: #0b5844;
        margin-bottom: 40px;
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
    }

    .district-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #0b5844, #4CAF50);
        border-radius: 2px;
    }

    .district-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .district-card {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        text-align: center;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .district-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: rgba(11, 88, 68, 0.2);
    }

    .district-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
    }

    .district-icon {
        font-size: 16px;
        color: #0b5844;
        margin-bottom: 15px;
        display: inline-block;
        background: rgba(11, 88, 68, 0.1);
        width: 45px;
        height: 45px;
        line-height: 47px;
        border-radius: 50%;
        text-align: center;
    }

    .district-link {
        color: #333;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        display: block;
        transition: color 0.3s;
        position: relative;
        z-index: 1;
    }

    .district-link:hover {
        color: #0b5844;
    }

    .district-card:nth-child(odd) .district-icon {
        background: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .district-card:nth-child(3n) .district-icon {
        background: rgba(52, 152, 219, 0.1);
        color: #3498db;
    }

    .district-card:nth-child(4n) .district-icon {
        background: rgba(155, 89, 182, 0.1);
        color: #9b59b6;
    }

    @media (max-width: 992px) {
        .district-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .district-grid {
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 15px;
        }

        .district-title {
            font-size: 28px;
        }

        .district-icon {
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 24px;
        }
    }

    @media (max-width: 480px) {
        .district-grid {
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        }

        .district-card {
            padding: 15px 10px;
        }

        .district-link {
            font-size: 14px;
        }
    }


    .post-media {
    float: none !important;
    margin: 0 auto 10px auto;
    text-align: center;
    overflow: visible !important;   /* Her ihtimale karşı */
    height: auto !important;        /* Sabit yükseklik varsa iptal eder */
}

.post-media .blog-detail-image {
    display: inline-block;
    max-width: 100%;
    height: auto;
    object-fit: contain;            /* Görseli kırpma, tamamını göster */
}

