/* Policies Page Specific Styles */

.policy-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
}

.policy-content-section {
    margin-bottom: 35px;
}

.policy-content-section h4 {
    color: #e11e12;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-content-section h4 i {
    font-size: 20px;
    color: #e11e12;
}

.policy-content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.policy-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #e11e12;
    font-size: 14px;
}

.policy-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
}

.policy-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.policy-header span {
    color: #e11e12;
}

/* About Page Specific Enhancements */
.about-hero-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-hero-image {
    flex: 1;
    min-width: 300px;
    background: url('/media/images/about/main.jpg') center/cover;
    min-height: 400px;
}

.about-hero-text {
    flex: 1;
    padding: 60px;
    min-width: 300px;
}

.about-hero-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-hero-text h2 span {
    color: #e11e12;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(225, 30, 18, 0.1);
    transform: translateY(-5px);
    border-color: #e11e12;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #e11e12;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}
