/* ============================================
   hülsta sofa - Modern Styles
   ============================================ */

/* === Global Styles === */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #ecf0f1;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --overlay-color: rgba(44, 62, 80, 0.85);
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Header & Navigation === */
.header-main {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 2rem;
    transition: all var(--transition-speed) ease;
}

.navbar-brand {
    transition: transform var(--transition-speed) ease;
}

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

.logo {
    height: 50px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* === Hero Carousel === */
.hero-section {
    margin-top: 76px;
    position: relative;
}

.carousel-item {
    height: 85vh;
    min-height: 500px;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.9);
    transition: all var(--transition-speed) ease;
}

.carousel-item:hover img {
    filter: brightness(0.75);
    transform: scale(1.02);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: var(--overlay-color);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.carousel-caption h1 {
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    color: var(--text-light);
}

.carousel-caption .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.carousel-caption .btn {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* === Products Section === */
.products-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0;
}

.products-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.products-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* === Product Cards === */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-speed) ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

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

.product-overlay .btn {
    padding: 0.7rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
}

.product-overlay .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: color var(--transition-speed) ease;
}

.product-card:hover .product-info h3 {
    color: var(--accent-color);
}

.product-info p {
    color: #7f8c8d;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* === Contact Hero === */
.contact-hero {
    margin-top: 76px;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.hero-overlay .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* === Contact Cards === */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #5dade2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed) ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #5dade2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed) ease;
}

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

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-details {
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.contact-item span {
    color: #555;
}

.contact-item-address {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 1rem;
}

.contact-item-address p {
    margin: 0;
    color: var(--primary-color);
    line-height: 1.8;
}

.navigation-address {
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eaf8 100%);
    border-left-color: #2980b9;
    padding: 1.5rem;
    text-align: center;
}

.navigation-address p {
    font-size: 1.1rem;
}

/* === Contact Buttons === */
.contact-card .btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed) ease;
}

.contact-card .btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.contact-card .btn-outline-primary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-card .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    border: none;
}

.contact-card .btn-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* === Map Section === */
.map-section {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.map-placeholder {
    background: white;
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(52, 152, 219, 0.1) 49.5%, rgba(52, 152, 219, 0.1) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(52, 152, 219, 0.1) 49.5%, rgba(52, 152, 219, 0.1) 50.5%, transparent 50.5%);
    background-size: 50px 50px;
    opacity: 0.3;
}

.map-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.map-content i {
    font-size: 4rem;
    color: var(--accent-color);
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.map-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-content p {
    font-size: 1.1rem;
}

/* ============================================
   Programme Page Styles
   ============================================ */

/* === Page Header === */
.page-header {
    margin-top: 76px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.page-header .lead {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

/* === Programme Section === */
.programme-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* === Programme Cards === */
.programme-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.programme-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.programme-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f8f9fa;
}

.programme-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.programme-card:hover .programme-image-wrapper img {
    transform: scale(1.15);
    filter: brightness(0.9);
}

/* === Programme Overlay === */
.programme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

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

.programme-overlay .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
}

.programme-card:hover .programme-overlay .btn {
    transform: translateY(0);
}

.programme-overlay .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* === Programme Info === */
.programme-info {
    padding: 1.25rem;
    text-align: center;
    background: white;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.programme-info h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    transition: color var(--transition-speed) ease;
    font-size: 1.25rem;
}

.programme-card:hover .programme-info h2 {
    color: var(--accent-color);
}

/* === Badges === */
.badge-special {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-stoffaktion {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.badge-neu {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.badge-system {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

/* === Badge Hover Effects === */
.programme-card:hover .badge-special {
    animation: badgeBounce 0.6s ease;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* === Grid Adjustments === */
.programme-section .row {
    justify-content: center;
}

/* === Footer === */
.footer-main {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-main p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.footer-main a {
    transition: all 0.3s ease;
}

.footer-main a:hover {
    color: var(--accent-color) !important;
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .page-header {
        padding: 3rem 0 1.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .carousel-item {
        height: 60vh;
    }

    .carousel-caption {
        padding: 2rem;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption .lead {
        font-size: 1.1rem;
    }

    .products-section h2 {
        font-size: 2rem;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .page-header {
        padding: 2.5rem 0 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .programme-image-wrapper {
        aspect-ratio: 3/2;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 40px;
    }

    .carousel-item {
        height: 50vh;
        min-height: 400px;
    }

    .carousel-caption {
        padding: 1.5rem;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .carousel-caption .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-image-wrapper {
        height: 250px;
    }

    .products-section {
        padding: 3rem 0;
    }

    .hero-image-wrapper {
        height: 250px;
    }

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

    .hero-overlay .lead {
        font-size: 1.2rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .map-placeholder {
        height: 300px;
    }

    .page-header {
        padding: 2rem 0 1rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header .lead {
        font-size: 1rem;
    }

    .badge-special {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .programme-info {
        padding: 1rem;
    }

    .programme-info h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .carousel-caption h1 {
        font-size: 1.2rem;
    }

    .carousel-caption .lead {
        font-size: 0.9rem;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-info p {
        font-size: 0.9rem;
    }

    .hero-image-wrapper {
        height: 200px;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-overlay .lead {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header .lead {
        font-size: 0.9rem;
    }

    .programme-card {
        margin-bottom: 1rem;
    }

    .badge-special {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }

    .programme-overlay .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* === Smooth Scrolling === */
html {
    scroll-behavior: smooth;
}

/* === Loading Animation === */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.programme-card.loading {
    animation: pulse 1.5s infinite;
}

/* === Accessibility === */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.programme-card:focus-within {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.programme-overlay .btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* === Print Styles === */
@media print {
    .navbar,
    .footer-main {
        display: none;
    }

    .carousel-caption {
        background: none;
        color: black;
    }
}




/* ============================================
   FAQ Page Styles
   ============================================ */

/* === FAQ Introduction === */
.faq-intro {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.intro-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--accent-color);
}

.intro-content p.lead {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* === FAQ Categories === */
.faq-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.category-title i {
    color: var(--accent-color);
}

/* === Accordion Styles === */
.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background-color: #f8f9fa;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-color) 0%, #5dade2 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    line-height: 1.8;
}

.accordion-body p {
    margin-bottom: 1rem;
    color: #555;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.accordion-body a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accordion-body a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* === Responsive FAQ === */
@media (max-width: 768px) {
    .faq-category {
        padding: 1.5rem;
    }
    
    .intro-content {
        padding: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .category-title {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        font-size: 0.9rem;
    }
}
