/* ========================================
   ABOUT PAGE STYLES
   Specific styles for about.html and aboutUs.html
   ======================================== */

/* Philosophy Pillars */
.philosophy-pillar {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.philosophy-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.philosophy-pillar .icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.philosophy-pillar .icon-circle i {
    font-size: 2rem;
    color: white;
}

.philosophy-pillar h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.philosophy-pillar p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Trust Logos Section */
.trust-logos-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.trust-logos-section h5 {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.trust-logo {
    margin: 15px 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    max-height: 60px;
    width: auto;
}

.trust-logo:hover {
    opacity: 1;
}

/* About Page Content Typography */
main.section-padding p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

main.section-padding .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;
}

main.section-padding h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-green);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .philosophy-pillar {
        margin-bottom: 20px;
    }

    .trust-logos-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .philosophy-pillar .icon-circle {
        width: 60px;
        height: 60px;
    }

    .philosophy-pillar .icon-circle i {
        font-size: 1.5rem;
    }

    .philosophy-pillar h4 {
        font-size: 1.1rem;
    }

    .philosophy-pillar p {
        font-size: 0.9rem;
    }

    .trust-logo {
        margin: 10px 15px;
        max-height: 50px;
    }

    main.section-padding h3 {
        font-size: 1.5rem;
    }
}
