.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.about-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 40, 0.55);
    z-index: 1;
}
.about-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 160px;
}
.about-hero .hero-content h1 {
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 56px;
    letter-spacing: 0.4px;
}

@media (max-width: 992px) {
    .about-hero .hero-content h1 {
        font-size: 42px;
    }
}

/* Practices Content */
.practices-content {
    padding: 80px 0;
    background: var(--white);
    color: var(--dark-blue);
}

.practices-intro {
    margin-bottom: 60px;
    max-width: 800px;
}

.practices-intro h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.practices-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
}

.practice-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.practice-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
}

.practice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.practice-icon {
    font-size: 32px;
}

.practice-header h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    color: var(--dark-blue);
}

.practice-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a5568;
}

.practice-body h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

/* Reuse ra-checks from other pages */
.ra-checks {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.ra-checks li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
}

.ra-checks li::before {
    content: "\eb52"; /* Boxicons check icon code */
    font-family: 'boxicons';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 20px;
}

.practices-commitment {
    margin-top: 80px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.practices-commitment h3 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.practices-commitment p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .practices-content {
        padding: 60px 0;
    }
    
    .practices-intro h2 {
        font-size: 28px;
    }
    
    .practice-item {
        padding: 20px;
    }
    
    .ra-checks {
        grid-template-columns: 1fr;
    }
}
