.grand-aeon-content {
    width: 100%;
}

.grand-aeon-text {
    overflow: hidden;
    max-height: 85px;
    transition: max-height 0.4s ease;
}

/* Full content after clicking Read More */
.grand-aeon-content.expanded .grand-aeon-text {
    max-height: 5000px;
}

/* Paragraph */
.grand-aeon-text p {
    margin-top: 0;
    margin-bottom: 18px;
}

/* H3 */
.grand-aeon-text h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Links */
.grand-aeon-text a {
    text-decoration: underline;
}

/* Button */
.grand-aeon-read-more {
    margin-top: 15px;
    padding: 12px 22px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.grand-aeon-read-more:hover {
    opacity: 0.85;
}

.grand-aeon-security-content p{
font-size:16px;
}


.grand-aeon-faq-section {
    width: 100%;
    margin: 40px 0;
}

.grand-aeon-faq-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 25px;
    line-height: 1.3;
}

.grand-aeon-faq-accordion {
    width: 100%;
}

.grand-aeon-faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.grand-aeon-faq-question {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
}

.grand-aeon-faq-question:hover {
    background: #fafafa;
}

.grand-aeon-faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #e52b2b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
}

.grand-aeon-faq-answer {
    display: none;
    padding: 0 22px 20px;
}

.grand-aeon-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.grand-aeon-faq-item.active {
    border-color: #e52b2b;
}

.grand-aeon-faq-item.active .grand-aeon-faq-question {
    background: #fff8f8;
}

.grand-aeon-faq-item.active .grand-aeon-faq-icon {
    background: #e52b2b;
}

@media (max-width: 767px) {
    .grand-aeon-faq-section {
        margin: 30px 0;
    }

    .grand-aeon-faq-section h2 {
        font-size: 26px;
    }

    .grand-aeon-faq-question {
        padding: 15px;
        font-size: 15px;
    }

    .grand-aeon-faq-answer {
        padding: 0 15px 18px;
    }
}