body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #F8F9FA;
    color: #333;
    padding-top: 70px;
}

a {
    text-decoration: none;
    color: inherit;
}


.menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 10;
    box-sizing: border-box;
}

.menu-sol {
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #4CAF50;
}

.menu-sol:hover {
    transform: scale(1.08);
    transition: 0.25s;
}

.menu-sag {
    display: flex;
    gap: 40px;
}

.menu-link {
    font-size: 0.95em;
    font-weight: 500;
    color: #555;
    position: relative;
    transition: transform 0.25s ease;
}

.menu-link:hover {
    transform: scale(1.08);
    color: #4CAF50;
}


.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #4CAF50;
    transition: width 0.25s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-link.active {
    color: #4CAF50;
    font-weight: 600;
}


.menu-link.active::after {
    width: 100%;
}

.kucukmenu {
    margin-top: 25px;
    margin-left: 40px;
    margin-bottom: 20px;

    font-size: 14px;
    color: #666;
}


.kucukmenu a {
    text-decoration: none;
    color: #4CAF50;
    transition: color 0.3s;
}

.kucukmenu a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

.kucukmenu span {
    margin: 0 5px;
}

.kucukmenu .active {
    color: #999;
    font-weight: 500;
}



.ana-gorsel {
    height: 450px;
    background-image: url("resimler/banner2.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.gorsel-katman {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gorsel-baslik {
    color: #fff;
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}



.icerik {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}




.kutu-alani {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.kutu {
    width: calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kutu:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.kutu-resim {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.kutu:hover .kutu-resim {
    transform: scale(1.05);
}

.kutu-icerik {
    padding: 20px;
}

.kutu-icerik h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.kutu-icerik p {
    font-size: 0.95em;
    color: #666;
}



.iceriksag {
    background-color: #4CAF50;
    color: #fff;
    width: 100px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;

}

.iceriksag:hover {
    transform: scale(1.08);

}

.bolum-baslik {
    font-size: 2em;
    font-weight: 600;
    color: #4CAF50;
    border-bottom: 3px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex: 1;
    align-items: justify;
    justify-content: space-between;
}

.bolum-ust {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.iletisim-alani {
    background-color: #2f2f2f;
    color: #fff;
    padding: 40px 60px;
}

.iletisim-ust {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.iletisim-bilgileri h3,
.sosyal-medya h3 {
    margin-bottom: 15px;
    color: #4CAF50;
}

.iletisim-bilgileri p {
    margin-bottom: 8px;
    font-size: 15px;
}

.sosyal-medya a {
    display: inline-block;
    margin-bottom: 8px;
    text-decoration: none;
}

.iletisim-bilgileri a:hover {
    color: #4CAF50;
}

.iletisim-harita iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}