.about-page .hero {
    position: relative;
    background-image: url('../images/background\ services.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    height: 80vh;
    display: flex;
    color: #fff;
}

/* About Section */
.about-section {
    margin: 0 auto;
}

.about-section h2 {
    font-size: 36px;
    color: #D50505; /* Red theme color */
    text-align: center;
    padding: 50px 0;
}

.about-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 0;
}

.about-buttons .btn {
    background-color: #D50505;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.about-buttons .btn:hover {
    background-color: #333;
}

/* Mission & Values Section */
.mission-values {
    background: linear-gradient(to bottom right, #f0f0f5, #e5e5ea);
    padding: 80px 0;
    text-align: center;
    color: #333;
}

.mission-values h2 {
    font-size: 42px;
    color: #D50505; /* Slightly deeper red for emphasis */
    margin-bottom: 20px;
    font-weight: bold;
}

.mission-statement {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    background: linear-gradient(to top right, #fefefe, #fafafa); /* Subtle gradient */
    width: 280px; /* Slightly larger card */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.25);
}

.value-card i {
    font-size: 60px; /* Larger icon */
    color: #D50505; /* Red color for icons */
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.value-card:hover i {
    color: #333; /* Change icon color on hover */
    transform: scale(1.1); /* Slight icon enlargement on hover */
}

.value-card h4 {
    font-size: 24px;
    color: #D50505; /* Deeper red color for emphasis */
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-container {
        flex-direction: column;
        align-items: center;
    }

    .value-card {
        width: 90%; /* Full width on mobile */
        margin-bottom: 20px;
    }
}
