/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    background-color: #f8f4f3;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #f84525;
    border-radius: 2px;
}

.about-intro {
    /* max-width: 900px; */
    margin: 0 auto;
    /* text-align: center; */
}

.about-intro .lead {
    font-size: 24px;
    line-height: 1.7;
    color: #4b5563;
}

.about-intro p {
    font-size: 24px;
    line-height: 1.7;
    color: #4b5563;
}

/* Mission and Vision Section */
/* .mission-vision-section {
    background-color: #ffffff;
} */

.info-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card .card-title {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #f84525;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-card .card-text {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.section-description {
    font-size: 1.1rem;
    color: #4b5563;
}

/* Process Steps */
.process-steps {
    margin-top: 4rem;
    position: relative;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: none;
    border-top: 2px dashed #f84525;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.step-middle {
    margin-top: 3rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #f84525;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(248, 69, 37, 0.3);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background-color: #f8f4f3;
}

.cta-button {
    display: block;
    background-color: #a21900;
    color: white;
    text-align: center;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(162, 25, 0, 0.2);
}

.cta-button:hover {
    background-color: #f84525;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(248, 69, 37, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-line {
        display: none;
    }

    .step-middle {
        margin-top: 0;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .main-title {
        font-size: 1.75rem;
    }

    .info-card {
        padding: 2rem;
    }

    .info-card .card-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
