/* About Page Specific Styles */
.about-page .section-padding {
    padding: 80px 0;
}

.about-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    font-family: var(--brand-heading-font, "Lato", sans-serif);
}


.about-page .lead {
    font-size: 1.15rem;
    line-height: 1.6;
}

.about-page p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.about-page .journey-img {
    max-height: 400px;
    object-fit: cover;
}

/* What We Do Section */
.what-we-do-section {
    /* background-color: #d9201d; */
    background-image: linear-gradient(135deg, #d9201d 0%, #b31613 100%);
}

.what-we-do-section p {
    color: rgba(255, 255, 255, 0.9);
}

.product-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.5);
}

.product-box .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

/* Quote Box */
.quote-box {
    background: #fdf2f2;
    border-left: 5px solid #d9201d;
    padding: 30px;
    border-radius: 4px 8px 8px 4px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-box p {
    color: #333;
}

/* Reason Cards */
.reason-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    box-shadow: none !important;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #d9201d;
    box-shadow: none !important;
}

.reason-icon {
    font-size: 2.5rem;
    font-weight: 900;
    color: #d9201d;
    margin-bottom: 20px;
    display: inline-block;
    background: #fdf2f2;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.reason-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Commitment Box */
.commitment-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.commitment-box h2 {
    font-weight: 700;
}

.commitment-box p {
    color: rgba(255, 255, 255, 0.8);
}

/* Partnership Box */
.partnership-box {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.partnership-box h2 {
    font-weight: 700;
}

.btn-connect {
    display: inline-block;
    background: #d9201d;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: auto;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.btn-connect:hover {
    background: #b31613;
    color: #fff;
}

@media (max-width: 768px) {
    .about-page .section-padding {
        padding: 50px 0;
    }

    .commitment-box,
    .partnership-box {
        padding: 30px;
    }
}