/* Reset de estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
}

/* Estilos generales */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0a4abf;
}

.hero-section {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons a {
    display: inline-block;
    background-color: #4b71d7;
    color: white;
    font-size: 18px;
    padding: 14px 30px;
    margin: 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-buttons a:hover {
    background-color: #3a5bbf;
}

/* Diseño móvil */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .hero-section {
        width: 90%;
        padding: 30px;
    }
}
