.faq-classichead {
    padding: 30px 0;
    text-align: center;
    margin-top: 70px;
}

.faq-intro-heading {
    font-size: 2.5em;
    color: #000;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.faq-subheading {
    font-size: 1.5em;
    color: #007bff;
    font-weight: bold;
    margin: 10px 0 0;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-div-content {
    padding: 52px 0;
}

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

.faq-questions-section {
    display: block; 
}

.faq-title {
    margin-left: 70px;
	 color:#1D71B9 }

.faq-intro-section .faq-text-content {
    margin-left: 100px;
    margin-right: 250px;
}

.faq-text-content h2 {
    color: #1D71B9;
    font-size: 1.8em;
    margin-bottom: 30px;
}

.faq-text-content h2 a {
    color: #007bff;
    text-decoration: none;
}

.faq-text-content h2 a:hover {
    text-decoration: underline;
}

.faq-text-content p {
    font-size: 1.3em;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.faq-theme-list {
    list-style-type: none;
    padding-left: 10px;
    margin-top: 35px;
}

.faq-theme-list li {
    list-style-type: disc;
    margin: 25px 0 0 35px;
    color: #007bff;
}

.faq-theme-list li a {
    font-weight: bold;
    font-size: 1.5em;
    text-decoration: none;
}

.faq-theme-list li a:hover {
    text-decoration: underline;
}

.faq-image-content {
    flex: 0 0 500px;
}

.faq-question-block {
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #e8ecef;
    padding: 10px;
}

.faq-question {
    position: relative;
    padding: 10px 20px;
}

.faq-toggle {
    display: none;
}

.faq-toggle + label {
    padding: 5px 0;
    display: block;
    font-size: 1em;
    color: #333;
}

.faq-toggle + label .faq-chevron {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.faq-toggle:checked + label .faq-chevron {
    transform: rotate(180deg);
}

.faq-toggle ~ .faq-content {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-toggle:checked ~ .faq-content {
    max-height: 200px;
    padding: 10px 20px;
}

.faq-content {
    color: #333;
    font-size: 0.9em;
}

.faq-separator {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 5px 20px;
}

@media (max-width: 768px) {
    .faq-intro-section { flex-direction: column;text-align: center;}
    .faq-text-content { padding-right: 0; }
    .faq-image-content { display: none; }
    .faq-title {margin-left: 10px;}
    .faq-text-content h2 { font-size: 1.5em; }
}