body {
    background: #FAFAF8;
    color: #333;
    font-family: system-ui, sans-serif;
}

.hero {
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80') center/cover;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero::before {
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
}

.card-soft {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.2s;
}

.card-soft:hover {
    transform: translateY(-4px);
}

.btn-primary {
    background: #2E5E4E;
    border-color: #2E5E4E;
}

.btn-primary:hover {
    background: #244a3d;
    border-color: #244a3d;
}