* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url('Fotos_PDF/Wiese-Baum-grün.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overscroll-behavior: none;
}

html {
    background-image: url('Fotos_PDF/Wiese-Baum-grün.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overscroll-behavior: none;
}

.container {
    max-width: 900px;
    width: 100%;
    padding-bottom: 80px;
}

.content {
    text-align: center;
}

.content > h1,
.content > .subtitle {
    background: rgba(200, 200, 200, 0.75);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.content > h1 {
    margin-bottom: 20px;
}

.content > .subtitle {
    margin-bottom: 40px;
}

h1 {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 10px;
    margin-top: 30px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: stretch;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
    max-width: 100%;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.info-box {
    background: rgba(255, 255, 255, 0.96);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.info-box .info-icon {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.info-box .info-icon-small {
    height: 100px;
    width: auto;
    margin-top: -25px;
    margin-bottom: -10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.info-box:hover {
    /* Keine Bewegung mehr */
}

.info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.info-box h2.with-lines {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 2px solid #cccccc;
    border-bottom: 2px solid #cccccc;
}

.info-box p {
    color: #555;
    font-size: 15px;
}

.cta-section {
    background: rgba(255, 255, 255, 0.96);
    padding: 30px 25px;
    border-radius: 15px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}

.about-section {
    background: rgba(255, 255, 255, 0.96);
    padding: 30px 25px;
    border-radius: 15px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}

.about-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.about-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    text-align: justify;
}

.about-image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 10px;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(60%) sepia(10%) brightness(1.05);
    margin-top: -55px;
}

.about-text {
    flex: 1;
}

.about-preview {
    margin-bottom: 10px;
}

.about-more {
    display: none;
}

.read-more-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #e65a28;
    text-decoration: underline;
}

.about-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.about-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.about-section p.paragraph-spacing {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-image {
        width: 150px;
    }
}

.cta-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-align: center;
}

.cta-section > p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 15px 10px 90px;
    background: #e8e8e8;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item .icon {
    font-size: 1.2rem;
    color: #ff6600;
    font-weight: bold;
    width: 25px;
    text-align: left;
    display: inline-block;
    flex-shrink: 0;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-item a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .info-box h2 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .therapy-button-grid {
        grid-template-columns: 1fr !important;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    margin-right: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.8);
}

.download-btn-secondary {
    display: block;
    margin-top: 10px;
    margin-right: 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.download-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.8);
}

.qr-code-container {
    margin-top: 15px;
    text-align: center;
}

.qr-code {
    width: 150px;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: white;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.close {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background 0.2s ease;
}

.close:hover {
    background: #ff6b35;
    color: white;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 90vh;
    }
}

/* Location Styles */
.location-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #cccccc;
}

.location-section.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-section.side-by-side {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.location-section.side-by-side > div {
    flex: 0 1 auto;
    min-width: 180px;
}

.map-container-horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.location-marker {
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    flex-shrink: 0;
}

.location-marker::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-address-side {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.map-address-link {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-address-link:hover {
    color: #ff6b35;
    text-decoration: underline;
}


.class-time {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.location-columns {
    gap: 15px;
}

.location-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.location-column .map-container-horizontal {
    margin-top: 20px;
}

.location-column .download-btn-secondary {
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .location-columns {
        flex-wrap: wrap;
    }
}

.download-btn-dance {
    display: inline-block;
    margin-top: 10px;
    margin-right: 8px;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #7ed957 0%, #5cb85c 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.download-btn-dance:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.8);
}

.disclaimer {
    font-size: 0.7rem !important;
    color: #999;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.4;
    font-style: normal;
    text-align: center;
}

/* Hover Popup for Pain Areas Overview */
.pain-info-wrapper {
    position: relative;
    display: inline-block;
}

.pain-info-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
    border-radius: 50%;
    cursor: help;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-info-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.pain-popup {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 15px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 15px;
    width: 450px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.pain-info-wrapper:hover .pain-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

.pain-popup::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: white;
}

.pain-popup h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1rem;
    text-align: center;
}

.pain-popup iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
    display: block;
}

.pain-popup img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.pain-popup-link {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pain-popup-link:hover {
    color: #e65a28;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pain-popup {
        width: 90vw;
    }
    
    .pain-popup iframe {
        height: 300px;
    }
}

/* Lightbox Icon for Pain Areas */
.pain-lightbox-wrapper {
    position: relative;
    display: inline-block;
}

.pain-lightbox-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
    border-radius: 50%;
    cursor: pointer;
    margin-right: 8px;
    margin-left: -20px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-lightbox-icon:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.pain-lightbox-preview {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 15px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 15px;
    width: 300px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.pain-lightbox-wrapper:hover .pain-lightbox-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

.pain-lightbox-preview::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: white;
}

.pain-lightbox-preview img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
}

.pain-lightbox-preview p {
    text-align: center;
    color: #ff6b35;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.pain-lightbox-content {
    width: auto;
    max-width: 95vw;
    height: auto;
    max-height: 95vh;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-lightbox-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Nia Lightbox Styles */
.nia-lightbox-wrapper {
    position: relative;
    display: inline-block;
}

.nia-lightbox-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #7ed957 0%, #5cb85c 100%);
    border-radius: 50%;
    cursor: pointer;
    margin-right: 8px;
    margin-left: -20px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nia-lightbox-icon:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(92, 184, 92, 0.4);
}

.nia-lightbox-preview {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 15px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 15px;
    width: 300px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.nia-lightbox-wrapper:hover .nia-lightbox-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

.nia-lightbox-preview::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: white;
}

.nia-lightbox-preview img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
}

.nia-lightbox-preview p {
    text-align: center;
    color: #5cb85c;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.nia-lightbox-content {
    width: auto;
    max-width: 95vw;
    height: auto;
    max-height: 95vh;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nia-lightbox-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}


/* Konsistente Button-Breiten und Abstände */
.therapy-button-grid,
.location-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.therapy-button-grid a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    box-sizing: border-box;
    font-size: 0.9rem !important;
}

.location-columns .download-btn-dance {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem !important;
}

/* Konsistente Separator-Linien */
.separator-line {
    border-top: 1px solid #cccccc;
    margin-top: 25px;
    padding-top: 15px;
}

/* Konsistente Call-to-Action Texte */
.cta-text {
    color: #333;
    line-height: 1.6;
    font-family: 'Kalam', cursive;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Box-Sizing für alle Elemente */
* {
    box-sizing: border-box;
}

/* Verhindert Layout-Shifts durch Schriftarten */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Button-Symbole größer und mit Abstand */
.therapy-button-grid a::before,
.download-btn-dance::before,
a[onclick*="openBookingModal"]::before {
    font-size: 1.2em;
    margin-right: 8px;
    display: inline-block;
}


/* Hover-Effekte für Schmerztherapie-Buttons mit Inline-Styles */
.therapy-button-grid a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.8) !important;
}

a[onclick*="openBookingModal"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.8) !important;
}


/* ===== FAQ BOXEN ===== */
.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.faq-box {
    background: rgba(255, 255, 255, 0.96);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.faq-toggle-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
    gap: 10px;
}

.faq-toggle-btn:hover {
    background: #f5f5f5;
}

.faq-toggle-icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-box.open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 20px 10px 20px;
}

.faq-title {
    font-size: 1.2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 9px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 5px 10px 5px;
    color: #555;
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: left;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-orange .faq-question:hover { color: #ff6600; }
.faq-orange .faq-item.open .faq-question { color: #ff6600; }
.faq-orange .faq-icon { color: #ff6600; }

.faq-green .faq-question:hover { color: #5cb85c; }
.faq-green .faq-item.open .faq-question { color: #5cb85c; }
.faq-green .faq-icon { color: #5cb85c; }
