/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h2.section-title {
    font-size: 2.5rem;
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.terms-and-conditions {
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 900px;
    margin: 20px auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content Styles */
.content {
    margin-top: 20px;
}

.terms-section {
    margin-bottom: 20px;
}

.terms-section p {
    margin: 15px 0;
    text-align: justify;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-section ul li {
    margin: 10px 0;
    list-style: square;
    color: #0056b3;
}

/* Headers and Highlighting */
.terms-section h3 {
    font-size: 1.8rem;
    color: #007bff;
    margin-top: 20px;
    border-left: 5px solid #007bff;
    padding-left: 10px;
}

.terms-section a {
    color: #007bff;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}

/* Icons */
.icon {
    font-size: 2rem;
    color: #007bff;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h2.section-title {
        font-size: 2rem;
    }

    .terms-section h3 {
        font-size: 1.5rem;
    }

    .terms-section p,
    .terms-section ul {
        font-size: 0.9rem;
    }
}
/* boton */
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-and-conditions {
    animation: fadeIn 1s ease-in-out;
}

/* Estilo del botón */
.button {
    display: inline-block;
    padding: 12px 24px; /* Más espaciado para mayor visibilidad */
    font-size: 1.1rem; /* Tamaño del texto */
    font-weight: bold; /* Negrita */
    color: #ffffff !important; /* Forzar el color del texto a blanco */
    background-color: #007bff; /* Azul brillante */
    border: none;
    border-radius: 8px; /* Bordes redondeados */
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease; /* Animaciones suaves */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
    overflow: visible; /* Asegura que el contenido no se recorte */
}

/* Efecto al pasar el cursor */
.button:hover {
    background-color: #0056b3; /* Azul más oscuro */
    transform: translateY(-2px); /* Movimiento hacia arriba */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Sombra más destacada */
}

/* Efecto al hacer clic */
.button:active {
    background-color: #003f8a; /* Azul más oscuro */
    transform: translateY(1px); /* Movimiento hacia abajo */
}

/* Enfoque para accesibilidad */
.button:focus {
    outline: none;
    box-shadow: 0 0 5px 2px rgba(0, 123, 255, 0.5); /* Resaltar el botón */
}

/* Estilo adicional para asegurar que el texto sea visible */
#top a.button {
    color: #ffffff !important; /* Forzar el color del texto */
}

/* Subtle Section Highlight */
.terms-section {
    animation: fadeIn 0.8s ease-in-out;
    transition: background-color 0.3s ease;
    padding: 15px;
    border-left: 5px solid #0056b3;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.terms-section:hover {
    background-color: #e9ecef;
}

/* Icon Animation */
.icon {
    animation: fadeIn 1.2s ease;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: rotate(360deg);
}

/* Smooth Scroll for Links */
html {
    scroll-behavior: smooth;
}
