body {
    background: #000;
    color: white;
    font-family: Arial, sans-serif;
}

.servicios-container {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.servicios-container h1 {
    color: #F2CF1D;
    font-size: 32px;
}

.sub {
    color: #ccc;
    margin-bottom: 40px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.servicio-item {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #8C5C03;
    text-align: left;
    color: #ddd;
    box-shadow: 0 0 18px rgba(0,0,0,0.4);
    transition: .25s;
}

.servicio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255,190,60,0.6);
}

.servicio-item h2 {
    color: #F2CF1D;
    margin-bottom: 10px;
}

.servicio-item ul {
    margin-top: 10px;
    padding-left: 18px;
}

.servicio-item ul li {
    margin-bottom: 6px;
}
