/* About Us Page Styles */
.who-we-are-section {
    padding: 2rem 0;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #14899a, #86b7fe);
    border-radius: 2px;
}

.who-we-are-content {
    padding-right: 2rem;
}

.who-we-are-content p {
    color: #495057;
    line-height: 1.8;
    font-size: 1.1rem;
}

.who-we-are-image img {
    transition: transform 0.3s ease;
}

.who-we-are-image img:hover {
    transform: scale(1.02);
}

.values-section {
    padding: 3rem 0;
}

.value-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
    border-top: 4px solid #14899a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #14899a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(20, 137, 154, 0.1);
}

.value-icon i {
    font-size: 1.5rem;
    color: #14899a;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.value-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.value-content {
    text-align: left;
}

/* Policy pages: section headings in primary color */
.policy-content .policy-section-heading {
    color: #14899a;
    font-weight: 600;
}
.policy-content .policy-section-heading.mt-4 {
    margin-top: 1.5rem !important;
}

/* Policies index page: cards and links */
.policy-cards-row .policy-card {
    border: 1px solid rgba(20, 137, 154, 0.25);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.policy-cards-row .policy-card:hover {
    box-shadow: 0 8px 24px rgba(20, 137, 154, 0.15);
    border-color: rgba(20, 137, 154, 0.5);
    transform: translateY(-4px);
}
.policy-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(20, 137, 154, 0.12), rgba(11, 47, 109, 0.08));
    color: #14899a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.policy-card-icon i {
    font-size: 1.5rem;
}
.policy-card-title {
    color: #2c3e50;
}
.policy-card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #14899a;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}
.policy-card-link:hover {
    color: #0b2f6d;
}
.policy-card-link i {
    transition: transform 0.2s ease;
}
.policy-card-link:hover i {
    transform: translateX(4px);
}

.value-description {
    color: #495057;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .who-we-are-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.25rem;
    }
}

/* Additional responsive improvements */
@media (max-width: 576px) {
    .who-we-are-section {
        padding: 1rem 0;
    }
    
    .values-section {
        padding: 2rem 0;
    }
    
    .value-card {
        padding: 1.25rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .who-we-are-content p {
        font-size: 1rem;
    }
} 