.blog-section,
.careers-body,
.helpcenter-body,
.aboutus-body {
    font-family: 'Poppins', sans-serif;
    color: white;
    background: linear-gradient(135deg, #0a1f35, #14416c);
    min-height: 100vh;
    padding-top: 100px;
    /* To account for the fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-header,
.page-header {
    padding: 3rem 1rem 1rem;
    text-align: center;
}

.blog-header h2,
.page-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #91c9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-img-fondo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 0 auto 2rem;
    max-width: 90%;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    text-align: center;
}

.blog-body,
.page-body {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.card-sin-contenido {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 4rem 2rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
    color: #a0c4e4;
    line-height: 1.6;
    margin-top: 50px;
    box-sizing: border-box;
}

/* =========================================
   HELP CENTER MODERN GLASSMORPHISM STYLES
   ========================================= */

.help-center-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.centro-ayuda {
    width: 100%;
    margin-bottom: 30px;
}

.centro-ayuda h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Tarjeta Glassmorphism */
.card-sombra-oscura {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
}

/* Estilos del Formulario */
.ayuda-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ayuda-form input,
.ayuda-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.ayuda-form input::placeholder,
.ayuda-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ayuda-form input:focus,
.ayuda-form textarea:focus {
    outline: none;
    border-color: #91c9ff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(145, 201, 255, 0.2);
}

.ayuda-form textarea {
    resize: vertical;
    min-height: 150px;
}

#btnEnviarConsulta {
    background: linear-gradient(135deg, #2b70b5, #14416c);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#btnEnviarConsulta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 65, 108, 0.5);
    background: linear-gradient(135deg, #3284d6, #1a5690);
}

#btnEnviarConsulta:active {
    transform: translateY(0);
}

/* Caja de Preguntas Frecuentes */
.faq-box {
    text-align: center;
}

.faq-box h3 {
    font-size: 1.5rem;
    color: #91c9ff;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Diseño Responsivo (Desktop) */
@media (min-width: 768px) {
    .ayuda-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .ayuda-form textarea,
    .ayuda-form button {
        grid-column: span 2;
    }

    .card-sombra-oscura {
        padding: 40px;
    }
}

/* Custom Guide Option Cards */
.fl-guide-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.fl-guide-option-card:hover {
    transform: translateY(-5px);
    border-color: #91c9ff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 25px rgba(145, 201, 255, 0.15);
}

.fl-guide-option-card button {
    background: linear-gradient(135deg, #2b70b5, #14416c);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fl-guide-option-card:hover button {
    background: linear-gradient(135deg, #3284d6, #1a5690);
    box-shadow: 0 4px 15px rgba(50, 132, 214, 0.4);
}

.fl-guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .fl-guides-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Make paragraphs in Help Center white */
.help-center p,
.help-content p,
.help-container p {
  color: #ffffff !important;
}

/* FAQ Accordion Styles */
.faq-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-category:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(100, 181, 246, 0.2);
}

.faq-category[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(100, 181, 246, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-title {
  padding: 20px 24px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.category-title::-webkit-details-marker {
  display: none;
}

.category-title i {
  margin-right: 12px;
  color: #64b5f6;
  width: 20px;
  text-align: center;
}

.category-title::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.95rem;
  color: #64b5f6;
  transition: transform 0.3s ease;
}

.faq-category[open] .category-title::after {
  transform: rotate(180deg);
}

.category-content {
  padding: 0 24px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* Inner Questions */
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(100, 181, 246, 0.3);
}

.faq-item summary {
  padding: 16px 20px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #e0f2fe;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: rgba(100, 181, 246, 0.7);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 20px 16px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 12px;
}

.faq-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: left;
}