/* About Us Page Styling */

.ph-about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.ph-about-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ph-about-title {
    font-size: 32px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 20px;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0b71b9;
}

.ph-about-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ph-about-text {
    font-size: 15px;
    line-height: 1.9;
    color: #666666;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: justify;
}

.ph-about-highlight {
    background-color: #fff3cd;
    padding: 20px 25px;
    border-left: 5px solid #0b71b9;
    margin: 25px 0;
    border-radius: 4px;
}

.ph-about-highlight-text {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    letter-spacing: 1px;
}

.ph-about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.ph-about-item {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 15px;
    padding-left: 30px;
    letter-spacing: 1px;
    position: relative;
}

.ph-about-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0b71b9;
    font-weight: bold;
    font-size: 18px;
}

.ph-about-mission {
    background: linear-gradient(135deg, #0b71b9 0%, #0f8ee7 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
}

.ph-about-mission-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.ph-about-mission-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #fff;
}

.ph-about-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.ph-about-feature-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e7e7e7;
    transition: all 0.3s ease;
}

.ph-about-feature-card:hover {
    border-color: #0b71b9;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.15);
}

.ph-about-feature-icon {
    font-size: 40px;
    color: #0b71b9;
    margin-bottom: 15px;
}

.ph-about-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.ph-about-feature-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    letter-spacing: 1px;
}

.ph-about-values {
    margin-top: 40px;
}

.ph-about-values-title {
    font-size: 24px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 25px;
    text-align: center;
}

.ph-about-value-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 6px;
}

.ph-about-value-name {
    font-size: 16px;
    font-weight: 600;
    color: #0b71b9;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.ph-about-value-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ph-about-content {
        padding: 25px;
    }

    .ph-about-title {
        font-size: 26px;
    }

    .ph-about-subtitle {
        font-size: 18px;
    }

    .ph-about-text {
        font-size: 14px;
    }

    .ph-about-section {
        padding: 40px 0;
    }

    .ph-about-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ph-about-mission {
        padding: 20px;
    }

    .ph-about-mission-title {
        font-size: 16px;
    }

    .ph-about-mission-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ph-about-content {
        padding: 15px;
    }

    .ph-about-title {
        font-size: 22px;
        padding-bottom: 12px;
    }

    .ph-about-subtitle {
        font-size: 16px;
    }

    .ph-about-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .ph-about-highlight {
        padding: 15px 20px;
        margin: 20px 0;
    }

    .ph-about-item {
        font-size: 13px;
        margin-bottom: 12px;
        padding-left: 25px;
    }

    .ph-about-feature-card {
        padding: 20px;
    }

    .ph-about-feature-icon {
        font-size: 32px;
    }
}
