﻿
.faqs-section {
    padding: 100px 40px;
    background-color: white;
    text-align: center;
    max-width: 800px;
    margin:0 auto;
}

.faqs-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    font-weight: 400;
}

.faqs-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

.btn-consultation {
    display: inline-block;
    background-color: #1B3164;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .btn-consultation:hover {
        background-color: #1B3164;
    }

.faq-list {
    max-width: 1000px;
    margin:0 auto;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #e0e0e0;
}

.faq-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #f0f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: #3498db;
}

.faq-content {
    flex: 1;
    padding-right: 20px;
}

    .faq-content h3 {
        font-size: 22px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .faq-content p {
        color: #666;
        line-height: 1.6;
        margin: 0;
        font-size:16px;
    }

.faq-arrow {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #1B3164;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .faq-arrow:hover {
        background-color: #2980b9;
        transform: translateX(5px);
    }


@media (max-width: 768px) {
    .faqs-content h1 {
        font-size: 24px;
    }

    .faqs-content p {
        font-size: 14px;
    }

    .faq-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-icon {
        margin-bottom: 15px;
    }

    .faq-content {
        margin-bottom: 20px;
    }

    .faq-arrow {
        align-self: flex-end;
    }
}