/* About Page - Consistent Styling */

/* Core Section Styling */
.about-section {
    padding: 4em 0;
}

.about-section .container {
    max-width: 1140px;
}

/* Two-Column Layout for "Who We Are" & "Why Trust Us" */
.about-intro-text {
    padding-right: 30px;
}

.about-intro-text h2, .trust-us-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-family: "Abril Fatface", times, serif;
}

.about-intro-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Trust Us Card */
.trust-us-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #e9ecef;
    height: 100%;
}

.trust-us-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.trust-us-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 17px;
}

.trust-us-card ul li::before {
    content: '✔';
    color: #65c0ba;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

/* Testimonial Blockquote */
.testimonial-quote {
    background-color: #fff;
    border: 1px solid #e9ecef;
    padding: 25px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid #65c0ba;
}

.testimonial-content p {
    margin-bottom: 15px;
    color: #333;
    font-style: italic;
    font-size: 17px;
    line-height: 1.6;
}

.testimonial-content footer {
    font-style: normal;
    font-weight: 600;
    text-align: left;
    color: #555;
    font-size: 15px;
}

/* "What You Get" Section */
.features-section {
    background-color: #fafafa;
    border-top: 1px solid #e0e0e0;
    padding: 4em 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-family: "Abril Fatface", times, serif;
}

.feature-item-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    background-color: #65c0ba;
    color: #fff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.feature-item-card:hover .feature-icon {
    background-color: #529a94;
}

.feature-item-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Abril Fatface", times, serif;
    color: #333;
}

.feature-item-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

.feature-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* "Start Your Journey" Section */
.journey-section {
    padding: 4em 0;
}

.journey-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #65c0ba;
}

.journey-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: "Abril Fatface", times, serif;
}

.journey-card p {
    flex-grow: 1;
    margin-bottom: 25px;
}

.journey-card .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}
.about-image-container .img-fluid {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}