:root {
    --primary: #30261b;
    --accent: #b72716;
    --bg: #f7f4ef;
    --card-bg: #ffffff;
    --text: #6e655c;
    --border: #e7e1d8;
}

.services-section {
    padding: 100px 5%;
    background: var(--bg);
}

.services-header {
    margin-bottom: 60px;
    text-align: center;
}

.services-subtitle {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.services-header h2 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 25px;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    min-height: 320px;

    transition: all .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.service-number {
    display: block;
    font-size: 54px;
    font-weight: 700;
    color: rgba(186, 33, 17,.5);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 25px;
}

.service-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.service-card a:hover {
    opacity: .8;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 48px;
    }

    .services-header p {
        font-size: 20px;
    }
}