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

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* Fondo blanco */
    color: #1a73e8; /* Texto en azul */
    margin: 0;
}

/* Estilos generales de la página principal */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5; /* Fondo claro */
    padding: 20px;
}

.hero-section {
    text-align: center;
    color: #1a73e8; /* Color azul */
    max-width: 600px;
    padding: 40px;
    background-color: #ffffff; /* Fondo blanco para la caja */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cta-buttons a {
    display: inline-block;
    background-color: #1a73e8; /* Azul para los botones */
    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: #1558b1; /* Azul más oscuro al pasar el cursor */
}

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

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