/* Features Section Styles */

.features-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #7B1E22;
    border-radius: 2px;
}

.section-subtitle {
    color: #6c757d;
    font-weight: 400;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background-color: rgba(123, 30, 34, 0.1);
    color: #7B1E22;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #7B1E22;
    color: #fff;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.feature-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.quote-section {
    background: linear-gradient(135deg, #7B1E22 0%, #A52A2A 100%);
    color: white;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: "\201C";
    font-size: 150px;
    position: absolute;
    opacity: 0.1;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
    color: #fff;
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.6;
}

.values-row {
    margin-top: 1.5rem;
}

.value-item {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D4AF37;
}

.value-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.value-description {
    color: #6c757d;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
}
