/**
 * newlanding.css
 * Styles for Frankfurt Landing Page (limousine-service-frankfurt-fra-airport.php)
 * Extracted from inline styles for cleaner code
 */

/* ==========================================================================
   FRA COMPACT SPACING
   ========================================================================== */
.fra-compact {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

/* ==========================================================================
   UNIFIED TYPOGRAPHY FOR FRANKFURT PAGE
   ========================================================================== */

/* All H2 headings - consistent size and weight */
h2.bl-service-title,
.fleet-section .section-title,
.reviews-section .reviews-title h2,
.locations-section .location-title,
.fra-dest-header h2,
.benefits-section h2,
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: none;
}

/* H3 titles */
h3.bl-service-title {
    font-size: 1.4rem;
    font-weight: 400;
}

/* White titles for dark backgrounds */
.bl-trusted-partners .bl-service-title,
.frankfurt-office-section .right-column .bl-service-title {
    color: #fff;
}

/* Frankfurt office section specific */
.frankfurt-office-section .bl-service-title {
    font-size: 1.5rem;
}

/* All spans in headings - unified accent color */
h1 span, h2 span,
.location-title span {
    font-weight: bold;
    color: #9A8A78;
}

/* ==========================================================================
   UNIFIED PARAGRAPH/DESCRIPTION STYLES
   ========================================================================== */

/* All description paragraphs - consistent styling */
.reviews-section .reviews-subtitle,
.locations-section .section-description,
.fleet-section .section-subtitle,
.fra-dest-intro,
p.bl-section-description,
.bl-section-description p,
.bl-seo-description p,
.bl-service-description p,
.benefits-section .benefit-text,
.cta-section .cta-text p,
.cta-section .feature-text {
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-style: normal;
}

/* Section subtitles (small caps above headings) - keep different */
.bl-section-subtitle,
.fra-dest-subtitle,
.benefits-section .section-subtitle,
.cta-section .section-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9A8A78;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Fleet section subtitle - reset uppercase */
.fleet-section .section-subtitle {
    text-transform: none;
    letter-spacing: normal;
}

/* Benefits section specific */
.benefits-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

/* CTA section specific */
.cta-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

/* Partners header - remove margin */
.bl-partners-header {
    margin-bottom: 0 !important;
}

/* Partners CTA - remove margin */
.bl-partners-cta {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
}

/* ==========================================================================
   PARTNERS CAROUSEL STYLES
   ========================================================================== */

.bl-partners-carousel {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.bl-carousel-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.bl-carousel-row:last-child {
    margin-bottom: 0;
}

.bl-carousel-track {
    display: flex;
    width: fit-content;
}

.bl-carousel-track .bl-partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    margin: 0 10px;
}

.bl-carousel-track .bl-logo-img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Dark logos need brightness adjustment */
.bl-carousel-track .bl-logo-img.bl-logo-dark {
    filter: grayscale(100%) brightness(1.5);
}

.bl-carousel-track .bl-partner-logo:hover .bl-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animation - scroll right */
.bl-scroll-right .bl-carousel-track {
    animation: scrollRight 30s linear infinite;
}

/* Animation - scroll left */
.bl-scroll-left .bl-carousel-track {
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.bl-carousel-row:hover .bl-carousel-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .bl-carousel-track .bl-partner-logo {
        width: 140px;
        height: 60px;
        padding: 10px 20px;
    }

    .bl-carousel-track .bl-logo-img {
        max-width: 90px;
        max-height: 40px;
    }
}

/* ==========================================================================
   FRANKFURT OFFICE SECTION STYLES
   ========================================================================== */

.frankfurt-office-section {
    background: #f8f8f8;
    padding: 50px 0;
    position: relative;
}

.frankfurt-office-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 138, 120, 0.2), transparent);
}

.frankfurt-office-section .office-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.frankfurt-office-section .left-column {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.frankfurt-office-section .left-column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.frankfurt-office-section .column-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.3);
}

.frankfurt-office-section .office-address {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.frankfurt-office-section .office-address .address-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #9A8A78;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.frankfurt-office-section .office-address .address-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-style: italic;
}

.frankfurt-office-section .office-address svg {
    color: #9A8A78;
    flex-shrink: 0;
    margin-top: 1px;
}

.frankfurt-office-section .office-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.frankfurt-office-section .office-description p {
    margin: 0;
}

.frankfurt-office-section .office-details {
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.frankfurt-office-section .cta-note-left {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.frankfurt-office-section .cta-note-left p {
    margin: 0;
}

.frankfurt-office-section .location-entry h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9A8A78;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.frankfurt-office-section .address-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.frankfurt-office-section .address-line svg {
    color: #9A8A78;
    flex-shrink: 0;
    margin-top: 3px;
}

.frankfurt-office-section .address-line span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

.frankfurt-office-section .action-buttons-block {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.frankfurt-office-section .action-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: 2px solid #9A8A78;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.frankfurt-office-section .action-btn.book-btn {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-color: transparent;
    color: #fff;
}

.frankfurt-office-section .action-btn:hover {
    background: linear-gradient(135deg, #9A8A78 0%, #C4B5A5 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(154, 138, 120, 0.4);
}

.frankfurt-office-section .action-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.frankfurt-office-section .right-column {
    position: sticky;
    top: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(154, 138, 120, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    align-self: start;
    height: fit-content;
    overflow: visible;
}

.frankfurt-office-section .experience-badge {
    position: absolute;
       top: -34px;
    right: -36px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #9A8A78 0%, #C4B5A5 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10;
    border: 3px solid #fff;
    gap: 4px;
}

.frankfurt-office-section .experience-badge .badge-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.frankfurt-office-section .experience-badge .badge-text {
    font-size: 0.55rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
}

.frankfurt-office-section .manager-photo-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.frankfurt-office-section .manager-photo-square {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(154, 138, 120, 0.5);
    background: #222;
}

.frankfurt-office-section .manager-photo-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frankfurt-office-section .manager-info-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
}

.frankfurt-office-section .manager-info-block p {
    font-size: 0.95rem;
    color: #9A8A78;
    margin: 0;
    font-weight: 500;
}

.frankfurt-office-section .right-column .quote-block {
    margin: 0;
    position: relative;
    padding-left: 45px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

.frankfurt-office-section .right-column .quote-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 3.5rem;
    color: rgba(154, 138, 120, 0.6);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

@media (max-width: 1100px) {
    .frankfurt-office-section .office-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .frankfurt-office-section {
        padding: 60px 0;
    }

    .frankfurt-office-section .right-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .frankfurt-office-section {
        padding: 50px 0;
    }

    .frankfurt-office-section .left-column,
    .frankfurt-office-section .right-column {
        padding: 25px 20px;
    }

    .frankfurt-office-section .left-column-title {
        font-size: 1.3rem;
    }

    .frankfurt-office-section .column-title {
        font-size: 1.2rem;
        padding-bottom: 15px;
    }

    .frankfurt-office-section .office-description {
        font-size: 0.9rem;
    }

    .frankfurt-office-section .manager-photo-square {
        width: 70px;
        height: 70px;
    }

    .frankfurt-office-section .manager-info-block h3 {
        font-size: 1.1rem;
    }

    .frankfurt-office-section .right-column .quote-block {
        padding-left: 35px;
        font-size: 0.95rem;
    }

    .frankfurt-office-section .right-column .quote-block::before {
        font-size: 2.5rem;
        top: -8px;
    }

    .frankfurt-office-section .action-buttons-block {
        flex-direction: column;
    }

    .frankfurt-office-section .action-btn {
        flex: 1 1 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .frankfurt-office-section .experience-badge {
        width: 75px;
        height: 75px;
        top: -12px;
        right: -8px;
    }

    .frankfurt-office-section .experience-badge .badge-number {
        font-size: 1.3rem;
    }

    .frankfurt-office-section .experience-badge .badge-text {
        font-size: 0.5rem;
    }
}

/* ==========================================================================
   BERLIN OFFICE SECTION STYLES
   ========================================================================== */

.berlin-office-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    position: relative;
}

.berlin-office-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 138, 120, 0.3), transparent);
}

.berlin-office-section .office-content-wrapper {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    align-items: start;
}

.berlin-office-section .left-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(154, 138, 120, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.berlin-office-section .manager-photo-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.2);
}

.berlin-office-section .manager-photo-square {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(154, 138, 120, 0.3);
    background: #222;
}

.berlin-office-section .manager-photo-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.berlin-office-section .manager-info-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
}

.berlin-office-section .manager-info-block p {
    font-size: 0.95rem;
    color: rgba(154, 138, 120, 1);
    margin: 0;
    font-weight: 500;
}

.berlin-office-section .quote-block {
    margin: 0;
    position: relative;
    padding-left: 50px;
    color: #ffffffd9;
}

.berlin-office-section .quote-block::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: rgba(154, 138, 120, 0.5);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.berlin-office-section .quote-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #fff;
    font-style: italic;
    margin: 0;
}

.berlin-office-section .right-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(154, 138, 120, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.berlin-office-section .column-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.2);
}

.berlin-office-section .locations-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.berlin-office-section .location-entry {
    flex: 1;
}

.berlin-office-section .location-entry h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(154, 138, 120, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.berlin-office-section .address-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.berlin-office-section .address-line svg {
    color: #9A8A78;
    flex-shrink: 0;
    margin-top: 3px;
}

.berlin-office-section .address-line span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.berlin-office-section .action-buttons-block {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.berlin-office-section .action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid rgba(154, 138, 120, 0.5);
    color: #9A8A78;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.berlin-office-section .action-btn:hover {
    background: linear-gradient(135deg, #9A8A78 0%, #C4B5A5 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(154, 138, 120, 0.4);
}

.berlin-office-section .action-btn svg {
    flex-shrink: 0;
    stroke: #9A8A78;
}

.berlin-office-section .action-btn:hover svg {
    stroke: #fff;
}

@media (max-width: 1100px) {
    .berlin-office-section .office-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .berlin-office-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .berlin-office-section {
        padding: 50px 0;
    }

    .berlin-office-section .left-column {
        padding: 30px 25px;
    }

    .berlin-office-section .manager-photo-block {
        gap: 15px;
        padding-bottom: 20px;
    }

    .berlin-office-section .quote-block {
        color: white;
    }

    .berlin-office-section .manager-photo-square {
        width: 80px;
        height: 80px;
    }

    .berlin-office-section .manager-info-block h3 {
        font-size: 1.15rem;
    }

    .berlin-office-section .manager-info-block p {
        font-size: 0.85rem;
    }

    .berlin-office-section .quote-block {
        padding-left: 40px;
    }

    .berlin-office-section .quote-block::before {
        font-size: 4rem;
        top: -10px;
    }

    .berlin-office-section .quote-block p {
        font-size: 0.95rem;
    }

    .berlin-office-section .right-column {
        padding: 30px 25px;
    }

    .berlin-office-section .column-title {
        font-size: 1.5rem;
    }

    .berlin-office-section .locations-list {
        flex-direction: column;
        gap: 20px;
    }

    .berlin-office-section .location-entry h4 {
        font-size: 0.75rem;
    }

    .berlin-office-section .address-line span {
        font-size: 0.875rem;
    }

    .berlin-office-section .action-buttons-block {
        flex-direction: column;
        gap: 12px;
    }

    .berlin-office-section .action-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .berlin-office-section .action-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   DESTINATIONS SECTION STYLES
   ========================================================================== */

.fra-destinations {
    background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
    padding: 60px 0;
}

.fra-dest-header {
    text-align: center;
    margin-bottom: 40px;
}

.fra-dest-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.fra-dest-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.fra-dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.fra-dest-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.fra-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: rgba(154, 138, 120, 0.3);
}

.fra-dest-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #9A8A78;
}

.fra-dest-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.fra-dest-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #9A8A78;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.fra-dest-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.fra-dest-featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-color: rgba(154, 138, 120, 0.3);
}

.fra-dest-featured:hover {
    border-color: #9A8A78;
}

.fra-dest-featured .fra-dest-icon {
    background: linear-gradient(135deg, #9A8A78 0%, #C4B5A5 100%);
    color: #fff;
}

.fra-dest-featured h3 {
    color: #fff;
}

.fra-dest-featured .fra-dest-tag {
    color: #C4B5A5;
}

.fra-dest-featured p {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .fra-dest-header h2 {
        font-size: 1.5rem;
    }

    .fra-dest-grid {
        grid-template-columns: 1fr;
    }

    .fra-dest-card {
        padding: 20px;
    }
}

/* ==========================================================================
   FAQ SECTION STYLES
   ========================================================================== */

.bl-faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.bl-faq-container {
    margin-top: 50px;
    max-width: auto!important;
    margin-left: auto;
    margin-right: auto;
}

.bl-faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

/* Button reset for FAQ questions */
button.bl-faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
}

.bl-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.bl-faq-question:focus {
    outline-offset: -2px;
}

.bl-faq-question h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.bl-faq-icon {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.bl-faq-icon svg {
    stroke: var(--primary-color, #0056b3);
}

.bl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.bl-faq-answer-content {
    padding: 15px 30px 25px;
    color: #666;
    line-height: 1.6;
}

.bl-faq-answer-content p {
    margin-top: 10px;
}

.bl-faq-answer-content ul {
    padding-left: 20px;
}

.bl-faq-answer-content li {
    margin-bottom: 8px;
}

.bl-faq-item.active .bl-faq-question {
    background-color: #f5f5f5;
}

.bl-faq-item.active .bl-faq-question h3 {
    color: var(--primary-color, #0056b3);
}

.bl-faq-item.active .bl-faq-icon {
    transform: rotate(45deg);
}

.bl-faq-item.active .bl-faq-answer {
    max-height: 2000px;
    transition: max-height 1s ease-in-out;
}

.bl-faq-question:hover h3 {
    color: var(--primary-color, #0056b3);
}

.bl-faq-question:hover .bl-faq-icon svg {
    stroke-width: 2.5;
}

@media (max-width: 768px) {
    .bl-faq-question {
        padding: 18px 20px;
    }

    .bl-faq-section {
        padding: 80px 0 0px 0px;
        background-color: #f9f9f9;
    }

    .bl-faq-question h3 {
        font-size: 14px;
        padding-right: 15px;
    }

    .bl-faq-answer-content {
        padding: 0 20px 20px;
    }
}
