/* Custom styling for Why Choose Us section */
.why-us-content {
    padding: 20px 0;
}

.why-us-list {
    list-style: none;
    padding: 0;
}

.why-us-list li {
    margin-bottom: 20px;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-us-list li strong {
    color: #0a1a2f;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

/* Core Values Section Styling */
.core-values {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.value-box {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.value-icon svg {
    color: #1a6e8e; /* Using the secondary-color from your root variables */
    transition: transform 0.3s ease;
}

.value-box:hover .value-icon svg {
    transform: scale(1.1);
}

.value-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0a1a2f;
    margin-bottom: 15px;
}

.value-box p {
    font-size: 16px;
    color: #666;
}
