body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
}

/* Headerdaki lacivert renk */
.header-info {
    background-color: #f0f0f0;
    color: #273585;
    padding: 0;
    font-size: 14px;
    line-height: 1.2;
    text-align: right;
}

.header-info p {
    margin: 0;
    padding: 5px 0;
}

.header-info a {
    color: #273585;
    text-decoration: none;
}

/* Navbar */
.navbar {
    background-color: #273585;
    position: -webkit-sticky; /* Safari için */
    position: sticky;
    top: 0;
    z-index: 1000; /* Üstte kalmasını sağlar */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.navbar-brand img {
    height: 50px;
}

.navbar-brand, .nav-link {
    color: white !important;
    transition: color 0.3s ease; /* Yumuşak geçiş efekti */
}

.nav-link:hover {
    color: #ffcc00 !important; /* Hover (fareyle üzerine gelince) rengi */
}

/* Aktif menüye tıklanınca rengi turuncu olacak */
.nav-link.active {
    color: #ffcc00 !important; /* Menü öğesi aktif olduğunda turuncu renk */
}

/* Hero section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: white;
    min-height: 500px;
}

.hero-text {
    width: 50%;
    padding-right: 30px; /* Sağda boşluk */
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #273585;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.hero-text a {
    padding: 15px 30px;
    background-color: #ffcc00;
    color: #273585;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-text a:hover {
    background-color: #ffdd57;
}

.hero-image {
    width: 50%; /* Resim sağda olacak */
    height: auto;
    object-fit: cover;
}

.section-separator {
    background-color: #f0f0f0;
    padding: 20px 0;
}

.steps {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

.steps h2 {
    color: #273585;
    font-size: 2rem;
    margin-bottom: 20px;
}

.step-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.step-box {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    border: 1px solid #e0e0e0;
    text-align: center;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    min-height: 350px;
    flex: 1 1 calc(33% - 40px);
    max-width: 300px;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.step-box img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.step-box h4 {
    color: #273585;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 0.9rem;
    color: #666;
}

/* İletişim başlığı ve diğer bilgilerin rengi */
.contact-section h2 {
    color: #273585;
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 10px;
}

.contact-section .contact-info-title {
    color: #273585;
}

.contact-section .contact-info {
    color: #666;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 20px;
}

.social-icons a {
    color: #273585;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffcc00;
}

/* Hakkımızda Kısmı */
.about-section {
    background-color: #f0f0f0;
    padding: 50px 0;
}

.about-section .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    max-width: 50%;
    color: #273585;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.6;
    color: #555;
}

.about-image img {
    max-width: 90%;
    height: auto;
}

/* Müşteri Yorumları Kısmı */
.reviews-section {
    padding: 40px 0;
    background-color: #ffffff;
    text-align: center;
}

.reviews-section h2 {
    color: #273585;
    font-size: 2rem;
    margin-bottom: 20px;
}

.reviews-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.review-box {
    flex: 0 0 30%;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
}

.review-content {
    display: flex;
    align-items: center;
}

.review-content img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.reviewer-name {
    font-weight: bold;
    color: #273585;
}

.review-text {
    font-size: 0.9rem;
    color: #666;
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-button:hover {
    background-color: #1ebd57;
}

.whatsapp-button i {
    font-size: 24px;
}

.google-maps-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

footer {
    background-color: #273585;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobil Uyumlu Tasarım */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-text {
        padding: 20px;
        width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .step-container {
        flex-direction: column;
        align-items: center;
    }

    .step-box {
        width: 90%;
        margin-bottom: 20px;
        min-height: 300px;
    }

    .about-section .content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-image img {
        max-width: 100%;
    }

    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-box {
        margin-bottom: 20px;
        width: 90%;
    }

    /* FAQ Container Padding Düzenlemesi */
    .faq-container {
        flex-direction: column;
        text-align: center;
        padding: 0 15px; /* Sağ ve soldan boşluk */
        min-height: auto; /* Mobilde tam ekran yüksekliği kaldırılır */
    }

    .faq-content {
        order: 2;
        width: 100%;
        padding-right: 0;
    }

    .faq-image {
        order: 1;
        margin-top: 20px;
        width: 100%;
    }

    .faq-image img {
        max-width: 300px;
        width: 100%;
        height: auto;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 40px 0;
    background-color: #f0f0f0;
}

/* Container for FAQ */
.faq-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Üstten ve alttan ortalama */
    gap: 20px;
    flex-wrap: nowrap;
    min-height: 100vh; /* Tam ekran yüksekliği sağlar */
}

/* FAQ Content Styling */
.faq-content {
    flex: 0 0 65%;
    padding-right: 20px;
}

.faq-content h2 {
    font-size: 2rem;
    color: #273585;
    margin-bottom: 20px;
}

/* FAQ Image Styling */
.faq-image {
    flex: 0 0 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.faq-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
    margin-top: 0;
}

/* Ensure last question has margin */
#faqAccordion .accordion-item:last-child {
    margin-bottom: 20px;
}
