:root {
    --primary-color: #2c2520;         /* Koyu kahve - başlıklar ve önemli öğeler */
    --secondary-color: #c4a94d;       /* Altın sarısı - aksanlar ve butonlar */
    --light-bg: #f5f1e9;             /* Ford Stardust - Ana arka plan */
    --text-color: #3d3d3d;            /* Koyu gri metin rengi */
    --heading-color: #2c2520;         /* Sıcak koyu kahve başlık rengi */
    --white-color: #f5f1e9;           /* Ford Stardust rengi */
    --navbar-bg: rgba(196, 212, 224, 1); /* Sıcak bej tonu, Ford Stardust ile uyumlu */
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --accent-color: #b8a05b;          /* Daha sıcak altın sarısı tonu */
    --accent-light: #f0e9d9;          /* Açık Ford Stardust tonu */
    --card-bg: #f5f1e9;               /* Kart arka plan rengi - Ford Stardust */
    --border-color: #d9d2c5;          /* Açık Ford Stardust çerçeve rengi */
    --modal-bg: #f5f1e9;              /* Modal arka plan rengi */
}

/* Scrollbar Stili */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--light-bg);
    padding-top: 80px;
    line-height: 1.7;
    background-image: linear-gradient(135deg, #f9f5f0 0%, #f0e6d9 100%);
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn-get-started {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--heading-color);
}

/* Navbar */
.navbar {
    background-color: var(--navbar-bg) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    padding: 1rem 0;
}

/* Navbar scroll durumu için */
.navbar.scrolled {
    background-color: var(--navbar-bg) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--heading-color) !important;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Butonlar */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #1a1a1a;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196, 169, 77, 0.3);
    color: #000;
}

.btn-primary:hover::before {
    width: 100%;
}

/* Linkler */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Kartlar ve Bölümler */
.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    background-color: var(--card-bg);
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f0e9d9);
}

.card .card-body {
    background-color: transparent;
}

.card .card-footer {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.03);
}

.card-body {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
}

.card-title {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--heading-font);
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.card:hover .card-title::after {
    width: 80px;
}

.card-text {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-footer {
    background-color: transparent;
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Özel Kart Stilleri */
.card-highlight {
    border-left: 4px solid var(--secondary-color);
}

.card-hover-shadow {
    transition: all 0.3s ease;
}

.card-hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Galeri Kartları */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.gallery-card img {
    transition: all 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-icon {
    color: white;
    font-size: 2rem;
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-body { 
    padding: 2rem; 
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c2520 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
}

footer h5 {
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

/* Öne Çıkan Bölüm */
.feature-box {
    padding: 2.5rem 2rem;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.feature-box:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* === Navbar Links General Styling === */
.navbar .navbar-nav .nav-link {
    font-family: var(--heading-font);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    background-color: transparent;
    transition: transform 0.3s ease;
}

/* Underline pseudo-element */
.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -5px; /* Position under the text */
    left: 0;
    background-color: var(--secondary-color);
    transform-origin: bottom center;
    transition: transform 0.3s ease-out;
}

/* Hover and Active states trigger animations */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    transform: scale(1.1); /* Scaling effect */
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1); /* Show underline */
}

/* === Navbar Color States === */
/* Navbar Link Stilleri */
.navbar .navbar-nav .nav-link {
    color: var(--heading-color) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* Mobil menü butonu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobil menü arka planı */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white-color);
        border-radius: 0.5rem;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }
}

/* === Sıkça Sorulan Sorular (FAQ) Section === */
.faq-section {
    background-color: #f8f9fa; /* Light grey background */
}

.accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem;
    overflow: hidden; /* Ensures border-radius is respected by children */
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.accordion-item:first-of-type {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.accordion-item:last-of-type {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.accordion-button {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    text-align: left;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #f0f7ff; /* A very light blue */
}

.accordion-body {
    font-family: var(--body-font);
    padding: 1.5rem;
    line-height: 1.7;
    background-color: #ffffff;
}

/* Custom accordion icon */
.accordion-button::after {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    content: "+";
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    line-height: 1.5rem;
    background-image: none; /* Remove default Bootstrap icon */
    transition: transform 0.3s ease-in-out;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed)::after {
    content: "−"; /* Minus sign */
    transform: rotate(180deg);
}

/* Carousel */
#home { padding: 0; }
#heroCarousel, .carousel-item { height: 90vh; }
.carousel-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.carousel-container { display: flex; justify-content: center; align-items: flex-end; padding-bottom: 8rem; position: absolute; bottom: 0; top: 0; left: 0; right: 0; }
.carousel-container .container { text-align: center; color: var(--white-color); }
.carousel-container h2 { font-size: 3.5rem; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.carousel-container p { font-size: 1.2rem; width: 70%; margin: 0 auto 30px auto; }
.btn-get-started { font-weight: 500; font-size: 1rem; letter-spacing: 1px; display: inline-block; padding: 12px 35px; border-radius: 50px; transition: all 0.4s ease; margin: 10px; color: var(--white-color); background: var(--secondary-color); text-decoration: none; border: 2px solid var(--secondary-color); }
.btn-get-started:hover { background: transparent; color: var(--white-color); border-color: var(--white-color); }

/* Sections */
section { padding: 80px 0; overflow: hidden; }
.bg-light { background-color: var(--light-gray) !important; }

/* Cards ve Buton stilleri yukarıda tanımlandı */

/* Hakkımızda Section */
#hakkimizda .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
#hakkimizda .card-title {
    color: var(--primary-color);
}

/* İletişim Section */
#iletisim .d-flex {
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
#iletisim .d-flex i {
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
}

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
/* Kartlara Tıklama Efekti ve Hover Animasyonu */
#urunler .card, #hizmetler .card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#urunler .card:hover, #hizmetler .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* İletişim Kartları Link Stili */
.contact-card-link {
    text-decoration: none;
    color: inherit;
}

.contact-card-link:hover {
    color: inherit;
}

/* İletişim Kartı Hover Animasyonu */
#iletisim .contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#iletisim .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0;
    font-size: 0.9rem;
}

.footer-heading {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white-color);
}

.footer-social-icons .social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    text-decoration: none;
    margin-right: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons .social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.site-footer .border-top {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25D366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float::after {
    content: 'Bize Ulaşın';
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    transform-origin: left;
    background-color: var(--heading-color);
    color: var(--white-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    font-family: var(--heading-font);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float:hover::after {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Floating Social Media Bar */
.social-bar {
    position: fixed;
    top: 30%; /* Daha yukarı taşındı */
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.social-icon-float {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff !important;
    font-size: 20px;
    background-color: var(--primary-color);
    margin-bottom: 5px;
    border-radius: 10px; /* Her zaman tam görünür */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon-float:hover {
    transform: scale(1.1); /* Hafif büyüme efekti */
}

.social-icon-float.facebook:hover {
    background-color: #1877F2;
}

.social-icon-float.instagram:hover {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-icon-float.tiktok:hover {
    background-color: #000000;
}
/* Gallery Navigation Buttons */
    .gallery-navigation {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1050;
        transition: all 0.3s ease;
    }
    
    .gallery-navigation:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
    
    .modal-body {
        position: relative;
    }
    
    .gallery-modal-img {
        max-height: 80vh;
        width: auto;
        margin: 0 auto;
        display: block;
    }
.carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
        }
        .carousel-container {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 60px 0;
        }
        .carousel-container .container {
            max-width: 800px;
            text-align: center;
        }
        .carousel-item h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .carousel-item p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .btn-get-started {
            background-color: #1e3a8a;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-get-started:hover {
            background-color: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 768px) {
            .carousel-item h2 {
                font-size: 2rem;
            }
            .carousel-item p {
                font-size: 1rem;
            }
        }
        /* Gallery Item Styles */
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 3px solid transparent;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border-color: #1e3a8a;
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 58, 138, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 2.5rem;
        }
        
        /* Sayfa kaydırma düzeltmesi */
        html {
            scroll-padding-top: 80px; /* Navbar yüksekliği kadar boşluk bırakır */
        }
        
        @media (max-width: 991.98px) {
            html {
                scroll-padding-top: 60px; /* Mobilde daha az boşluk */
            }
        }
        
        /* Geniş içerik alanı */
        .full-width-section {
            width: 100%;
            max-width: 100%;
            padding: 0;
            margin: 0;
        }
        
        .full-width-section > .container {
            max-width: 100%;
            padding: 0 15px;
        }
        
        @media (min-width: 1200px) {
            .full-width-section > .container {
                max-width: 1140px;
                margin: 0 auto;
            }
        }
        
        /* SSS Akordiyon Stilleri */
        .faq-section .accordion-item {
            border: 1px solid #e9ecef;
            margin-bottom: 15px;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        .faq-section .accordion-button {
            font-weight: 600;
            color: var(--primary-color);
            background-color: #fff;
            padding: 1.25rem 1.5rem;
            text-align: left;
            border: none;
            position: relative;
        }

        .faq-section .accordion-button:not(.collapsed) {
            color: var(--secondary-color);
            background-color: #f7f9fc;
            box-shadow: none;
        }

        .faq-section .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
        }

        .faq-section .accordion-body {
            padding: 1.5rem;
            background-color: #fff;
            color: var(--text-color);
        }

        /* Akordiyon İkon Animasyonu */
        .faq-section .accordion-button::before, 
        .faq-section .accordion-button::after {
            content: '';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            width: 16px;
            height: 2px;
            background-color: var(--primary-color);
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .faq-section .accordion-button::before {
            transform: translateY(-50%) rotate(0deg);
        }

        .faq-section .accordion-button::after {
            transform: translateY(-50%) rotate(90deg);
        }

        .faq-section .accordion-button:not(.collapsed)::before, 
        .faq-section .accordion-button:not(.collapsed)::after {
            background-color: var(--secondary-color);
        }

        .faq-section .accordion-button:not(.collapsed)::after {
            transform: translateY(-50%) rotate(0deg);
        }

        /* Bootstrap varsayılan ikonunu gizle */
        .faq-section .accordion-button:not(.collapsed)::after {
            background-image: none;
        }
        .faq-section .accordion-button::after {
            background-image: none;
        }