
.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;
}

.blog-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  margin-top: 50px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.blog-tag {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-date {
  color: #94a3b8;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff 0%, #91c9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-card-content p {
  color: #a0c4e4;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.blog-card-content p:last-child {
  margin-bottom: 0;
}

.blog-card-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.blog-btn:hover {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
