.page-about {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A1931;
    line-height: 1.6;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-about__hero {
    background: linear-gradient(135deg, #0A1931, #2C3E50);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-about__hero-content {
    max-width: 800px;
}

.page-about__title {
    font-size: 3.2em;
    color: #E0B143;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__description {
    font-size: 1.2em;
    color: #C0C0C0;
    margin-bottom: 30px;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #E0B143;
    color: #0A1931;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 177, 67, 0.4);
}

.page-about__cta-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.page-about__hero-image {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-about__hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-about__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 177, 67, 0.1);
}

.page-about__section:last-of-type {
    border-bottom: none;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #E0B143;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B143;
    border-radius: 2px;
}

.page-about__section-subtitle {
    font-size: 1.1em;
    color: #A0A0A0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-about__text-content {
    flex: 1;
    min-width: 300px;
}

.page-about__text-content p {
    margin-bottom: 15px;
    color: #C0C0C0;
    font-size: 1.05em;
}

.page-about__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-about__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-link {
    display: inline-block;
    color: #E0B143;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.page-about__cta-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-about__features-grid,
.page-about__product-grid,
.page-about__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__feature-item,
.page-about__product-card,
.page-about__commitment-item {
    background-color: #1A2A40;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__feature-item:hover,
.page-about__product-card:hover,
.page-about__commitment-item:hover {
    transform: translateY(-5px);
    background-color: #2A3E55;
}

.page-about__feature-title,
.page-about__card-title,
.page-about__commitment-heading {
    font-size: 1.6em;
    color: #E0B143;
    margin-bottom: 15px;
}

.page-about__feature-item p,
.page-about__product-card p,
.page-about__commitment-item p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-about__product-card img,
.page-about__commitment-item img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about__card-link {
    display: inline-block;
    margin-top: 15px;
    color: #E0B143;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-about__card-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-about__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-about__commitment-item img {
    max-width: 250px;
    margin-top: 20px;
}

.page-about__contact-info {
    background-color: #1A2A40;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
}

.page-about__contact-info p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #C0C0C0;
}

.page-about__contact-info strong {
    color: #E0B143;
}

/* FAQ Styles */
.page-about__faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(224, 177, 67, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #1A2A40;
    color: #E0E0E0;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #2A3E55;
}

.faq-question h3 {
    margin: 0;
    color: #E0B143;
    font-size: 1.1em;
}

.faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #E0B143;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #0A1931;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
    border-top: 1px solid rgba(224, 177, 67, 0.1);
}

.faq-answer p {
    color: #C0C0C0;
    margin-bottom: 15px;
}

.page-about__faq-link {
    display: inline-block;
    color: #E0B143;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.page-about__faq-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero {
        padding: 60px 20px;
    }
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__features-grid,
    .page-about__product-grid,
    .page-about__commitment-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        flex-direction: column;
        padding: 50px 15px;
    }
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__description {
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__section-subtitle {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-about__content-flex {
        flex-direction: column;
        gap: 30px;
    }
    .page-about__features-grid,
    .page-about__product-grid,
    .page-about__commitment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-about__feature-item,
    .page-about__product-card,
    .page-about__commitment-item {
        padding: 25px;
    }
    .page-about__feature-title,
    .page-about__card-title,
    .page-about__commitment-heading {
        font-size: 1.4em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 1.5em;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__contact-info {
        padding: 30px 15px;
    }
    .page-about__contact-info p {
        font-size: 1em;
    }
}