
/* Top bar temel stiller */
.top-bar {
    background-color: #24e424; /* Yeşil arka plan */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
}

.top-bar span, 
.top-bar ul {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.top-bar span {
    margin-right: 20px; /* Telefon numarası ile konum simgesi arasında boşluk */
}

.top-bar .location {
    flex-grow: 1;
    text-align: center;
}

.top-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.top-bar ul li {
    margin-left: 15px;
}

.top-bar ul li a {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

ion-icon {
    margin-right: 8px;
    font-size: 20px;
}

/* Responsive Design */

/* 768px ve altı ekran genişliklerinde top-bar gizlenir */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}


/* Navbar */

header {
    background-color:white ; /* Yeşil arka plan */
    padding: 10px 20px;
    box-sizing: border-box; /* Padding'leri düzgün hesaplamak için */
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo ve menüyü en sağa ve en sola hizalar */
    width: 100%; /* Tam genişlik */
    z-index: 1000;
}

/* Logo ve Metin */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px; /* Logoyu büyütme */
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.font1 {
    font-size: 30px; /* Fontu büyütme */
    font-weight: bold;
    color: #24e424;
    font-family: "Pacifico", cursive; /* İlk kelimenin fontunu ayarlar */
}

.font2 {
    font-size: 20px; /* Fontu büyütme */
    color: #24e424;
    font-family: "Playwrite NL", cursive;
    font-style: italic;
    line-height: 1; /* Satırlar arasındaki boşluğu azaltır */
}


/* Menü Linkleri */
.nav_links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Menü öğelerini sağa kaydırır */
}

.nav_links li {
    margin-left: 20px;
}

.nav_links li a {
    text-decoration: none;
    color: #24e424;
    font-size: 16px;
    transition: color 0.3s;
}

.nav_links li a:hover {
    color: black;
}

/* Mobil tasarım için hamburger menüsü */
.navbar-toggle {
    display:none;
    cursor: pointer;
    color: #24e424;
    font-size: 24px;

    
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav_links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 60px; /* Navbar'ın altına yerleştirmek için */
        left: 0;
        z-index: 1000;
        /* Centering the items on the left */
        align-items: flex-start; /* Solda hizala */
        padding-left: 20px; /* Soldan boşluk ekle */
    }

    .nav_links a {
        text-decoration: none; /* Alt çizgiyi kaldır */
        color: #000; /* Metin rengi */
        padding: 10px 20px; /* Tıklama alanını artırmak için padding */
        display: block; /* Alanı doldurmak için */
    }
    .nav_links li {
        margin: 15px 0;
    }

    .navbar-toggle {
        display: block;
        z-index: 1000;
    }

    .navbar.active .nav_links {
        display: flex;
    }
}

/* anasayfa */
/* Genel Ayarlar */
html, body {
    margin: 0; /* Varsayılan margin'ı sıfırla */
    padding: 0; /* Varsayılan padding'i sıfırla */
    width: 100%; /* Genişliği %100 yap */
    overflow-x: hidden; /* Yatay kaydırmayı gizle */
    box-sizing: border-box; /* Padding ve border'ı genişliğe dahil et */
    font-family: Arial, sans-serif;
}
#Anasayfa {
    padding: 20px;
    display: flex;
    justify-content:center; /* Center align the content horizontally */
    background-color:white;
}

.inner_anasayfa {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out items equally */
    width: 100%;
    max-width: 1200px;
    background-color: white;
} 

.text_content {
    flex: 1;
    padding-right: 20px; /* Add space between text and image */
}

.text_block h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #24e424;
    font-family: "Noto Serif", serif;
}

.text_block p {
    font-size: 1.7rem;
    line-height: 1.5;
    color: #24e424;
    font-family: "Playwrite NL", cursive;
}

.image_wrapper {
    flex: 1;
    display: flex;
    justify-content: center; /* Center image horizontally within its wrapper */
}

.image_content img {
    max-width: 100%;
    height: auto;
}

.podoloji {
    display: flex;
    flex-direction: column; /* Keep text vertical */
    align-items: center;
    font-size: 2rem; /* Larger font size */
    font-weight: bold; /* Bold font */
    color: whitesmoke; /* Black color with more transparency */
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3); /* Softer 3D effect */
    position: relative; /* Position text normally */
    margin-left: 20px; /* Space between image and text */
}

.podoloji span {
    line-height: 1.2;
    letter-spacing: 0.1rem; /* Add some space between letters for better visibility */
}

@media (max-width: 768px) {
    .inner_anasayfa {
        flex-direction: column;
        align-items: center;
    }

    .text_content, .image_content {
        width: 100%;
        text-align: center;
    }

    .podoloji {
     display: none;
    }

    .image_content img {
        margin-top: 20px;
        margin-right: 0;
    }
}

/* Container Styling */

/* Genel stil */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color:#24e424;
    font-family: "Noto Serif", serif;
}

p {
    font-size: 1.1rem;
    color: #666;
}

/* Carousel Wrapper */
/* Her satırda 4 tane olacak şekilde hizala (Deskopt için) */
.services-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(36, 228, 36, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #24e424;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    width: 100px;
    margin: 0 auto;
}

.service-card .button:hover {
    background-color: #24e424;
}

/* Responsive düzenleme */
/* Services Carousel */
/* Services Carousel */
@media only screen and (max-width: 768px) {
    .services-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overflow: hidden; /* Taşmayı engelle */
    }

    .service-card {
        min-width: 100%;
        scroll-snap-align: start;
        margin-right: 10px;
        box-sizing: border-box; /* Kutu boyutlamasını içerecek şekilde ayarlayın */
        overflow: hidden; /* İçeriğin taşmasını engelleyin */
    }

    .service-card h3,
    .service-card p {
        margin: 0; /* Başlık ve paragraf arasındaki boşlukları kaldırın */
        word-break: break-word; /* Uzun kelimelerin kırılmasını sağlar */
    }

    .dots {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .dots .dot {
        width: 12px;
        height: 12px;
        background-color: #ddd;
        border-radius: 50%;
        margin: 0 4px;
        cursor: pointer;
    }

    .dots .dot.active {
        background-color: #007bff;
    }
}


/* Podoloji Nedir? */
/* Podoloji Nedir? */
/*podoloji nedir*/
.podoloji-ekstra {
    padding: 40px 0;
    background-color:white;
}
.podoloji-ekstra img {
    max-width: 100%; /* Genişliği konteynıra göre ayarla */
    width: 300px; /* Genişliği otomatik ayarla */
    height: 300px; /* Yüksekliği otomatik ayarla */
    display: block; /* Satır boşluğunu kaldırır */
    margin: 20px auto; /* Ortalar ve üst/bottom boşluk bırakır */
    border-radius: 5px;
}

.podoloji-ekstra .container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.podoloji-ekstra .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.podoloji-ekstra .col-md-6 {
    flex: 1;
    padding: 20px;
}

.podoloji-ekstra h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive;
}

.podoloji-ekstra p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

@media only screen and (max-width: 768px) {
    .podoloji-ekstra {
        padding: 30px 0;
        background-color: #f9f9f9;
    }

    .podoloji-ekstra .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Ortalamayı sağlar */
        justify-content: center;
    }

    .podoloji-ekstra .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }

    .podoloji-ekstra .col-md-6 {
        flex: 1 1 calc(50% - 20px);
        padding: 10px;
        box-sizing: border-box;
    }

    .podoloji-ekstra h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #24e424;
    }

    .podoloji-ekstra p {
        font-size: 14px;
        color: #333;
        line-height: 1.4;
    }

    /* Resim için düzenleme */
    .podoloji-ekstra img {
        max-width: 100%; /* Genişliği konteynıra göre ayarla */
        width: auto; /* Genişliği otomatik ayarla */
        height: auto; /* Yüksekliği otomatik ayarla */
        display: block; /* Satır boşluğunu kaldırır */
        margin: 20px auto; /* Ortalar ve üst/bottom boşluk bırakır */
        min-height: 200px; /* Minimum yüksekliği belirle */
    }
}
/* Neden Podolog Sevim Işık? */
#neden-ayak-bakim-merkezi {
    padding: 30px 0; /* Yukarı ve aşağı boşluk */
    background-color: white; /* Arka plan rengini ayarlayabilirsiniz */
}

#neden-ayak-bakim-merkezi .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color:white; 
}

#neden-ayak-bakim-merkezi h2 {
    font-size: 22px; /* Başlık boyutunu küçült */
    margin-bottom: 20px; /* Başlık altı boşluk */
    color: #24e424; /* Başlık rengi */
    text-align: center;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Kutu arası boşluk */
    justify-content: center;
}

.feature {
    flex: 1 1 calc(50% - 15px); /* İki kutu için genişlik ayarı */
    box-sizing: border-box;
    padding: 5px; /* Kutu içi boşluk */
    border: 1px solid #ddd; /* Kutu kenar rengi */
    border-radius: 10px; /* Köşe yuvarlaklığı */
    background-color: rgba(36, 228, 36, 0.2); /* Kutu arka plan rengi */
    text-align: center;
    transition: background-color 0.3s ease; /* Hover efekti için geçiş */
}

.feature:hover {
    background-color: #e6f7ff; /* Hover sırasında arka plan rengini değiştirir */
}

.feature .icon {
    font-size: 24px; /* İkon boyutu */
    color: #24e424; /* İkon rengi */
    margin-bottom: 10px; /* İkon altı boşluk */
}

.feature .text h3 {
    font-size: 18px; /* Başlık boyutunu küçült */
    margin-bottom: 8px; /* Başlık altı boşluk */
    color: #24e424; /* Başlık rengi */
}

.feature .text p {
    font-size: 12px; /* Paragraf boyutunu küçült */
    color: #333;
    line-height: 1.5; /* Satır yüksekliğini biraz küçült */
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .feature {
        flex: 1 1 100%; /* Küçük ekranlarda kutular tam genişlikte */
        margin-bottom: 15px; /* Kutu altı boşluk */
    }
}
/*footer*/
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: white;
    z-index: 1000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styling */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 60px; /* Reduced size */
    margin-bottom: 10px;
}

.footer-logo h2,
.footer-logo p {
    color: #24e424;
    margin: 5px 0;
}

.footer-logo h2 {
    font-size: 1em;
    font-family: "Playwrite NL", cursive;
}

.footer-logo p {
    font-size: 1em;
    font-family: "Pacifico", cursive; /* İlk kelimenin fontunu ayarlar */
}

/* Menu and services styling */
.footer-menu,
.footer-services {
    margin: 10px 0;
    flex: 1 1 auto;
}

.footer-menu h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #24e424;
}

.footer-menu ul,
.footer-services ul {
    list-style: none;
    padding-left: 0;
}

.footer-menu ul li,
.footer-services ul li {
    margin-bottom: 5px;
}

.footer-menu ul li a,
.footer-services ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.footer-menu ul li a:hover,
.footer-services ul li a:hover {
    color: #24e424;
}

/* Contact styling */
.footer-contact {
    flex: 1 1 auto;
}

.footer-contact .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact .contact-info .icon {
    color: #24e424;
    margin-right: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #333;
}

/* Flexbox for desktop layout */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-logo,
    .footer-menu,
    .footer-services,
    .footer-contact {
        width: 23%;
    }

    .footer-contact .contact-info {
        justify-content: flex-start;
    }
}

/* Adjustments for mobile layout */
@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-logo,
    .footer-menu,
    .footer-services,
    .footer-contact {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-contact .contact-info {
        justify-content: center;
    }
}
/*before after*/
/* Carousel Stilleri */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 500px; /* Carousel genişliğini sınırlamak için */
    margin: 0 auto; /* Ortalar */
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px; /* Yüksekliği kare şeklinde ayarlamak için */
}

.carousel-item {
    flex: 1 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin alanı tam doldurmasını sağlar */
    object-position: center;
    max-height: 500px; /* Resmi kare içine sığdırır */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .carousel {
        max-width: 100%;
        height: auto;
    }

    .carousel-inner {
        height: auto; /* Mobil cihazlarda yüksekliği otomatik ayarlar */
    }

    .carousel-item img {
        height: auto;
        max-height: 50vh; /* Küçük ekranlar için yüksekliği ayarlamak */
    }
}

/*memnuniyet*/
.memnuniyet {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 500px; /* Carousel genişliğini sınırlamak için */
    margin: 0 auto; /* Ortalar */
}

.memnuniyet-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px; /* Yüksekliği kare şeklinde ayarlamak için */
}

.memnuniyet-item {
    flex: 1 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.memnuniyet-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Resmin alan içinde tam görünmesini sağlar */
    object-position: center;
    max-height: 500px; /* Resmi kare içine sığdırır */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .memnuniyet {
        max-width: 100%;
        height: auto;
    }

    .memnuniyet-inner {
        height: auto; /* Mobil cihazlarda yüksekliği otomatik ayarlar */
    }

    .memnuniyet-item img {
        height: auto;
        max-height: 50vh; /* Küçük ekranlar için yüksekliği ayarlamak */
        object-fit: contain; /* Küçük ekranlarda da tam sığmasını sağlar */
    }
}
/*social icon*/
.social-icons {
    position: fixed;
    right: 10px; /* Sağ kenara olan mesafe */
    bottom: 10px; /* Alt kenara olan mesafe */
    display: flex;
    flex-direction: column;
    gap: 10px; /* İkonlar arasındaki boşluk */
    z-index: 1000; /* İkonların sayfadaki diğer içeriklerin üstünde kalmasını sağlar */
}

.social-icons a {
    display: block;
    width: 50px; /* İkon genişliği */
    height: 50px; /* İkon yüksekliği */
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin ikonun tamamını doldurmasını sağlar */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .social-icons {
        right: 5px; /* Mobilde sağ kenara daha yakın */
        bottom: 5px; /* Mobilde alt kenara daha yakın */
        gap: 8px; /* Mobilde ikonlar arasındaki boşluğu azaltır */
    }

    .social-icons a {
        width: 40px; /* Mobilde ikon boyutunu küçült */
        height: 40px;
    }
}
/*hakkımız*/
.about-us-section {
    background-color: #32cd32; /* Arka plan rengi */
    padding: 40px 20px; /* İç boşluk */
    display: flex;
    justify-content: center;
}

.about-us-container {
    max-width: 1200px; /* İçeriğin genişliği */
    display: flex;
    align-items: center;
    gap: 20px; /* Resim ve metin arasındaki boşluk */
}

.about-us-image {
    border-radius: 50%; /* Resmi daire içine almak için */
    max-width: 300px; /* Resmin genişliği */
    width: 100%;
    height: auto;
    object-fit: cover; /* Resmin daire içinde tam görünmesini sağlar */
}

.about-us-content {
    color: white; /* Metin rengi */
    flex: 1;
}

.about-us-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: white;
    font-family: "Playwrite NL", cursive; /* Başlık yazı tipi */
}

.about-us-content p {
    line-height: 1.6;
    color: white; /* Paragraf metin rengi */
    font-family: Georgia, 'Times New Roman', Times, serif; /* Paragraf yazı tipi */
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .about-us-image {
        max-width: 200px; /* Küçük ekranlar için resmin genişliği */
        margin-bottom: 20px;
    }

    .about-us-content h2 {
        font-size: 1.5em;
        color: white;
        font-family: "Playwrite NL", cursive; /* Mobil için başlık yazı tipi */
    }

    .about-us-content p {
        line-height: 1.6;
        color: white;
        font-family: Georgia, 'Times New Roman', Times, serif; /* Mobil için paragraf yazı tipi */
    }
}
/*iletişim*/
.contact-section {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center; /* Ortalamayı sağlar */
}

.contact-map {
    display: inline-block; /* İçi dolu elemanı yatayda ortalamak için kullanılır */
    margin: 0 auto; /* Ortalamak için gerekli */
    max-width: 100%; /* Ekran boyutuna göre genişliği kısıtlar */
}

.contact-map iframe {
    max-width: 100%;
    height: 450px;
    border: 0;
    display: block; /* Ortalamayı düzgünleştirir */
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px; /* Harita ile detaylar arasına boşluk ekler */
}

@media (min-width: 768px) {
    .contact-section {
        text-align: left; /* Geniş ekranlarda sola hizalar */
    }

    .contact-map {
        margin-bottom: 20px;
    }

    .contact-details {
        align-items: flex-start;
        text-align: left;
    }
}

/*Topuk çatlağı*/
/* Content Section */
.content-section {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
/*nasır*/
.content-section1 {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section1 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section1 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section1 p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
/*deforme*/
.content-section2 {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section2 img {
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section2 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section2 p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
/*medikal*/
.content-section4 {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section4 img {
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section4 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section4 p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
.content-section3 {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section3 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section3 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section3 p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
/*sporcu*/
.content-section5 {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section5 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section5 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section5 p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
/*batık*/
.content-section6 {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section6 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section6 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section6 p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
/*mantar*/
.content-section7 {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section7 img {
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section7 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section7 p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
/*yeme*/
.content-section8 {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-section8 img {
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-section8 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #24e424;
    font-family: "Playwrite NL", cursive; ;
}

.content-section8 p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}