.about-page {

    padding: 40px 20px;

    background: #f8fafc;

}

.about-card {

    max-width: 900px;

    margin: 0 auto;

    background: #ffffff;

    border-radius: 16px;

    padding: 50px;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);

}

.about-title {

    font-family: "Playfair Display", serif;

    font-size: 40px;

    color: #01163e;

    margin-bottom: 20px;

}

.about-divider {

    width: 60px;

    height: 4px;

    background: #3f51b5;

    margin-bottom: 40px;

    border-radius: 2px;

}

.about-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #1f2937;

    margin-bottom: 28px;

}

.about-section-title {

    font-family: "Playfair Display", serif;

    font-size: 30px;

    color: #01163e;

    margin-top: 60px;

    margin-bottom: 30px;

}

.about-feature-card {

    display: flex;

    gap: 24px;

    align-items: flex-start;

    background: #f8fafc;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    padding: 28px;

    margin-bottom: 24px;

}

.feature-icon {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #3f51b5;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    flex-shrink: 0;

}

.feature-content h3 {

    font-size: 26px;

    color: #01163e;

    margin-bottom: 12px;

}

.feature-content p {

    font-size: 18px;

    line-height: 1.8;

    color: #374151;

}

@media (max-width: 768px) {

    .about-card {

        padding: 30px 20px;

    }

    .about-title {

        font-size: 30px;

    }

    .about-section-title {

        font-size: 22px;


    }

    .about-content p {

        font-size: 18px;

    }

    .about-feature-card {

        flex-direction: column;

        gap: 16px;

    }

    .feature-content h3 {

        font-size: 22px;

    }

}

.brand-link-inline {

    color: #3f51b5;

    text-decoration: none;

    font-weight: 600;

}

.brand-link-inline:hover {

    text-decoration: underline;

}