* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.hero {
    width: 100%;
    height: fit-content;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta gelsin */
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 25px;
    padding-top: 190px;
}

.hero-slogan {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-h1-p {
    width: 80%;
    margin-bottom: 20px;
}

.hero-h1-p h1 {
    font-size: 3vw; /* Dinamik font boyutu */
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-h1-p h2 {
    font-size: 1.5vw;
    color: #34495e;
    margin-bottom: 20px;
}

.hero-h1-p p {
    font-size: 1.2vw;
    color: #2c3e50;
}

.p-bold{
    font-weight: bold;
}

.hero-pic {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-pic-img img {
    width: 100%;
    height: auto; /* Responsive için oranı korur */
    max-height: 120vh; /* Taşmayı önler */
    object-fit: cover;
    border-radius: 10px;
}

/* Butonlar */
.hero-button {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.hero-button .offer,
.hero-button .contact {
    font-size: 20px;
    background-color: #6D0510;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.hero-button .offer:hover,
.hero-button .contact:hover {
    background-color: #865052;
}

/* Mobil ve Tablet İçin Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-slogan {
        width: 100%;
        padding: 10px;
    }

    .hero-h1-p {
        width: 90%;
    }

    .hero-h1-p h1 {
        font-size: 6vw;
    }

    .hero-h1-p h2 {
        font-size: 3.5vw;
    }

    .hero-h1-p p {
        font-size: 3vw;
    }

    .hero-pic {
        width: 100%;
    }

    .hero-button {
        flex-direction: column;
        gap: 10px;
    }

    .hero-button .offer,
    .hero-button .contact {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    
    .hero-pic-img{
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-pic-img img{
        width: 70%;
    }
}




.about {
    width: 100%;
    height: fit-content;
    display: flex;
    margin-bottom: 25px;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Öğeler arasında boşluk bırakır */
}

/* Resim alanı */
.about-pic {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-pic-img img {
    width: 100%;
    height: auto; /* Oranı korur */
    max-height: 120vh;
    object-fit: cover;
    border-radius: 10px;
}

/* İçerik alanı */
.about-content {
    width: 50%;
    height: auto;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Mobil uyumluluk için ortalama */
    padding: 20px;
}

.about-slogan {
    width: 100%;
    padding: 10px;
}

.about-h1-p {
    width: 90%;
    color: #34495e;
}

.about-h1-p h1 {
    font-size: 50px;
    color: #2c3e50;
}

.about-h1-p p {
    font-size: 20px;
}

/* Responsive Tasarım */

/* Tablet için */
@media screen and (max-width: 1024px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-pic,
    .about-content {
        width: 100%;
    }


    .about-pic-img{
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-pic-img img{
        width: 70%;
    }

    .about-h1-p h1 {
        font-size: 40px;
    }

    .about-h1-p p {
        font-size: 18px;
    }
}

/* Mobil için */
@media screen and (max-width: 768px) {
    .about {
        flex-direction: column;
        gap: 10px;
    }

    .about-pic,
    .about-content {
        width: 100%;
    }

    .about-h1-p h1 {
        font-size: 32px;
    }

    .about-h1-p p {
        font-size: 16px;
    }
}




.faq-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: none;
}

.question {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.answer {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}


