body{
    font-family: 'Satoshi', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-section {
    background: linear-gradient(
        135deg,
        #2e416a 0%,
        #1a2a4c 50%,
        #2e416a 100%
    );
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 65, 106, 0.4);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.about-section h2 {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    font-size: 35px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
}

.about-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    background-color: #4a6491;
    color: #ffffff;
    padding: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
}

.faq-question:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.faq-question:hover:before {
    left: 100%;
}

.faq-question:hover {
    background-color: #2e416a;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-answer {
    color: white;
    font-family: 'Satoshi', sans-serif;
    background-color: #1a2a4c;
    padding: 1rem;
    border: 1px solid #4a6491;
    border-top: none;
    display: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.faq-question::after {
    content: '\25BC';
    float: right;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.cta-button {
    display: inline-block;
    background-color: rgb(206, 210, 212);
    color: rgb(26, 42, 76);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

