body, html {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: 'Quicksand', 'Trebuchet MS', sans-serif;
      background-color: #0d1b2a; /* Navy blue background */
      color: #e8e8e8; /* Subtle lilac text */
    }
    .header {
      background-image: url('/untitled.png');
      background-size: cover;
      background-position: center;
      width: 100%;
      box-sizing: border-box;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
      border-top: 15px solid #0d1b2a;
      border-bottom: 3px solid #a02b93; /* Navy blue border */
      position: relative;
    }
    .logo {
      margin-right: 12px;
      height: 130px; /* Adjusted to be consistent with other pages */
      width: auto;
      position: relative;
      top: 8px; /* Adjusted for smaller logo */
    }
    .nav-links {
      display: flex;
      gap: 40px;
    }
    .nav-links a {
      color: #e8e8e8; /* Subtle lilac tint */
      text-decoration: none;
      font-size: 28px;
      font-weight: bold;
      position: relative;
    }
    .nav-links a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #e8e8e8;
      transition: width 0.3s ease;
    }
    .nav-links a:hover:after {
      width: 100%;
    }
    .nav-links a:hover {
      text-decoration: none;
    }
    
    /* Content styling */
    .content {
      width: 100%;
      margin: 0;
      padding: 40px;
      background-color: #0e2841;
      box-sizing: border-box;
      min-height: calc(100vh - 100px - 77px);
      position: relative;
      overflow: hidden;
    }
    
    /* Background elements updated with violet tones */
    .bg-element {
      position: absolute;
      opacity: 0.05;
      pointer-events: none;
      z-index: 0;
    }
    
    .bg-element.network {
      top: 10%;
      right: 5%;
      font-size: 300px;
      color: #a02b93; /* Changed from blue to violet to match other pages */
      transform: rotate(15deg);
    }
    
    .bg-element.data {
      bottom: 10%;
      left: 5%;
      font-size: 250px;
      color: #a02b93; /* Changed from blue to violet to match other pages */
      transform: rotate(-10deg);
    }
    
    /* Hero section updated with violet gradient */
    .about-hero {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 60px 0;
      margin-bottom: 80px;
      background: linear-gradient(135deg, #17395b 0%, #123049 100%); /* Changed to match HOME page gradient */
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(160, 43, 147, 0.2);
      overflow: hidden;
    }
    
    .about-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 40%, rgba(160, 43, 147, 0.1) 0%, transparent 70%); /* Changed to violet */
      z-index: -1;
    }
    
    .about-hero h1, .about-hero h2 {
      font-size: 56px;
      color: #ffffff;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      animation: fadeInFromTop 1s ease-out;
    }
    
    .about-hero p {
      font-size: 26px;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
      color: #e8e8e8;
      animation: fadeInFromBottom 1.2s ease-out;
    }
    
    /* Main content container */
    .page-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    /* Origin story section with violet styling */
    .origin-story {
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding: 40px;
      background-color: rgba(18, 48, 73, 0.2); /* Changed to match violet tone from other pages */
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .story-heading {
      font-size: 42px;
      color: #ffffff;
      text-align: center;
      margin-bottom: 20px;
      position: relative;
    }
    
    .story-heading::after {
      content: '';
      position: absolute;
      left: calc(50% - 40px);
      bottom: -10px;
      width: 80px;
      height: 3px;
      background: #a02b93; /* Changed from blue to violet */
    }
    
    /* Quote container with violet styling */
    .quote-container {
      position: relative;
      margin: 0 auto;
      max-width: 900px;
      padding: 30px 40px;
      background-color: rgba(18, 48, 73, 0.3); /* Adjusted to match other violet elements */
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-left: 4px solid #a02b93; /* Changed from blue to violet */
    }
    
    .quote-container::before {
      content: '"';
      position: absolute;
      top: -30px;
      left: 20px;
      font-size: 100px;
      color: rgba(255, 255, 255, 0.1);
      font-family: serif;
    }
    
    .quote-container p {
      font-size: 24px;
      font-style: italic;
      line-height: 1.6;
      color: #ffffff;
    }
    
    .story-text {
      font-size: 22px;
      line-height: 1.8;
      color: #e8e8e8;
      max-width: 900px;
      margin: 0 auto;
    }
    
    /* Vision and mission cards with violet styling */
    .vision-mission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 20px 0;
    }
    
    @media (max-width: 900px) {
      .vision-mission {
        grid-template-columns: 1fr;
      }
    }
    
    .info-card {
      padding: 40px;
      background-color: #15344f; /* Adjusted to match HOME page benefit boxes */
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
      border-top: 4px solid #a02b93; /* Changed from blue to violet */
    }
    
    .info-card:hover {
      transform: translateY(-10px);
    }
    
    .info-card h3 {
      font-size: 32px;
      margin-bottom: 25px;
      color: #ffffff;
      text-align: center;
    }
    
    .info-card p {
      font-size: 20px;
      line-height: 1.7;
      color: #e8e8e8;
    }
    
    /* Impact section with violet styling */
    .impact-section {
      background-color: rgba(18, 48, 73, 0.3); /* Adjusted to match other violet elements */
      border-radius: 20px;
      padding: 50px;
      margin-top: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .impact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(160, 43, 147, 0.05) 0%, transparent 50%); /* Changed from blue to violet */
      z-index: -1;
    }
    
    .impact-section h3 {
      font-size: 38px;
      color: #ffffff;
      margin-bottom: 30px;
      text-align: center;
    }
    
    .impact-text {
      font-size: 22px;
      line-height: 1.8;
      color: #e8e8e8;
      text-align: center;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    /* Footer standardization */
    .footer {
      border-top: 3px solid #a02b93;
      text-align: center;
      padding: 20px;
      background-color: #0d1b2a;
      color: #e8e8e8;
      width: 100%;
      box-sizing: border-box;
      font-size: 16px; /* Standardized font size */
    }
    
    .footer a {
      color: #ffffff;
      text-decoration: none;
      margin: 0 10px;
      font-size: 16px; /* Standardized font size */
    }
    
    .footer a:hover {
      text-decoration: underline;
    }
    
    .contact-email {
      margin-top: 10px;
      font-size: 16px; /* Standardized font size */
    }
    
    /* Animations */
    @keyframes fadeInFromTop {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes fadeInFromBottom {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Standardize scrollbar styling across the site */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
      background-color: #e97132; /* Violet color for consistency */
      border-radius: 5px;
    }
    
    ::-webkit-scrollbar-track {
      background-color: rgba(13, 27, 42, 0.2); /* Lighter track for better contrast */
    }


/* --- Selector de idioma (agregado con la version bilingue) --- */
.nav-links .lang-switch {
  border: 1px solid rgba(232, 232, 232, 0.45);
  border-radius: 5px;
  padding: 2px 11px;
  font-size: 20px;
  letter-spacing: 1px;
  align-self: center;
}
.nav-links .lang-switch:after { display: none; }
.nav-links .lang-switch:hover {
  background-color: rgba(232, 232, 232, 0.15);
}
