/* ============================================
   About Page Styles
   ============================================ */

.about-page {
    padding: 50px 0;
    background-color: #EAEAEA;
}

.about-page .container {
    max-width: 900px;
}

.about-page h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: rgb(47, 47, 47);
    margin-bottom: 40px;
    text-align: center;
}

.about-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: rgb(47, 47, 47);
    margin-bottom: 20px;
}

.about-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(47, 47, 47);
    margin-bottom: 15px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #ac10ea;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #ac10ea;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
}

/* CTA Button */
.about-cta {
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: #ac10ea;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #8a0dc2;
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    font-style: normal;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #ac10ea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .about-page {
        padding: 30px 0;
    }

    .about-page h1 {
        font-size: 28px;
    }

    .about-section {
        padding: 20px;
    }

    .about-section h2 {
        font-size: 20px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}
