.main-content {
    display: flex;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.faq-container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
}

.faq-container h1 {
    text-align: center;
    font-size: 2.8em;
    color: #3f6874;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-container h1 .faq-highlight {
    color: #ff914d;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #ff914d;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.4em;
    color: #3f6874;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer; 
}

.faq-item p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    padding: 0 25px 20px;
    margin: 0;
}

