:root {
    --primary-gray: #212529;
    --mid-gray: #343a40;
    --light-gray: #f8f9fa;
    --gold: #c5a85c;
    --gold-light: rgba(197, 168, 92, 0.15);
}


/* Large Header with Image Overlay */
.hero-header {
    position: relative;
    background: linear-gradient(rgba(33, 37, 41, 0.85), rgba(33, 37, 41, 0.85)), 
                url('https://images.unsplash.com/photo-1516520930276-1866701c3751?auto=format&fit=crop&q=80&w=1400') no-repeat center center;
    background-size: cover;
    padding: 200px 0 100px;
    color: white;
    border-bottom: 4px solid var(--gold);
}
.brand-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 10px;
}
.brand-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Section Minimal Styling */
.section-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--primary-gray);
    border-left: 4px solid var(--gold);
    padding-left: 12px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.speciality-badge {
    background: var(--light-gray);
    border: 1px solid #e5e5e5;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.element-box {
    background: var(--light-gray);
    border-left: 3px solid var(--gold);
    padding: 12px 15px;
    height: 100%;
}

.content-card {
    background: var(--light-gray);
    border: 1px solid #e5e5e5;
    padding: 25px;
}

/* Content Row Image Styling */
.content-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    border-bottom: 4px solid var(--gold);
}

footer {
    background-color: var(--primary-gray);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    border-top: 2px solid var(--gold);
}