.hero-section-movel {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.imgur.com/placeholder_mobile_telephony.jpg') no-repeat center center/cover; /* Placeholder image */
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.hero-content-movel {
    position: relative;
    z-index: 2;
}

.hero-title-movel {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle-movel {
    font-size: 1.5rem;
    font-weight: 400;
}

.plans-section .section-header h2 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
}

.cta-section .cta-title {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
}

.content-section-movel {
    padding: 80px 0;
}

.content-grid-movel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card-movel {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.content-card-movel:hover {
    transform: translateY(-10px);
}

.content-card-movel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card-movel h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem;
}

.content-card-movel p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

.btn-movel {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 1.5rem 1.5rem;
    transition: transform 0.3s ease;
}

.btn-movel:hover {
    transform: scale(1.05);
}
