.section {
    padding: 60px 0;
    border-bottom: 1px solid #eee5d9;
}

.section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 30px;
    font-weight: 400;
    color: #3d2e24;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-title i {
    color: #b48b7a;
    margin-right: 12px;
}

.section-sub {
    color: #7a6454;
    font-size: 18px;
    margin-bottom: 32px;
}

.grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 8px;
}

.card {
    background: #fffaf5;
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(140, 100, 70, 0.06);
    border: 1px solid #eee5d9;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(140, 100, 70, 0.10);
    border-color: #dccfc0;
}

.card i {
    font-size: 28px;
    color: #b48b7a;
    margin-bottom: 12px;
}

.card h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.card p {
    color: #5a4537;
    font-size: 15px;
}

.card ul li {
    margin-left: 10px;
    
}