/* Sertifikalar Bölümü */
.sertifikalar {
    text-align: center;
    padding: 60px 20px;
    background: #f0f0f0;
}

.sertifikalar h1 {
    font-size: 3rem; /* Daha büyük başlık */
    color: #222;
    margin-bottom: 40px;
}

/* Sertifika Kutuları */
.sertifika-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Daha büyük kutular */
    gap: 25px;
    padding: 30px;
    max-width: 1300px;
    margin: auto;
}

.sertifika {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sertifika:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Sertifika Resimleri */
.sertifika img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Başlık */
.sertifika h3 {
    font-size: 1.8rem; /* Daha büyük başlık */
    color: #111;
    margin-top: 20px;
}

/* Açıklama */
.sertifika p {
    font-size: 1.2rem; /* Yazılar büyütüldü */
    color: #444;
    margin-top: 12px;
}

/* 📱 Mobil Destek */
@media (max-width: 768px) {
    .sertifikalar h1 {
        font-size: 2.5rem;
    }

    .sertifika-container {
        grid-template-columns: 1fr;
    }

    .sertifika {
        padding: 20px;
    }

    .sertifika h3 {
        font-size: 1.6rem;
    }

    .sertifika p {
        font-size: 1rem;
    }
}