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; /* Add position relative to properly position the logo */
    }
    .logo {
      margin-right: 12px;
      height: 130px; /* Reduced from 170px */
      width: auto;
      position: relative;
      top: 8px; /* Adjusted from 14px to account for smaller size */
    }
    .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 {
      width: 100%; /* Occupy full width of the screen */
      margin: 0;
      padding: 60px 40px 80px; /* Increased bottom padding */
      background-color: #0e2841; /* Slightly darker blue */
      box-sizing: border-box;
      min-height: calc(100vh - 100px - 77px); /* Ensure content takes up minimum full height minus header and footer */
      position: relative;
      overflow: hidden;
    }
    .banner {
      text-align: center;
      margin-bottom: 100px; /* Increased from 60px */
      animation: fadeIn 1.2s ease-out;
      position: relative;
      z-index: 1;
      padding: 50px 20px; /* Increased top/bottom padding from 40px */
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(18, 48, 73, 0.4) 0%, rgba(13, 38, 60, 0.4) 100%);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(160, 43, 147, 0.1);
    }
    .banner h1 {
      font-size: 68px;
      margin: 0 0 20px 0;
      color: #ffffff;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      animation: slideInFromLeft 1.5s ease-out;
    }
    .banner p {
      font-size: 28px;
      max-width: 1000px;
      margin: 0 auto;
      line-height: 1.6;
      animation: slideInFromRight 1.8s ease-out;
    }
    .section-title {
      width: 100%;
      font-size: 48px; /* Increased from 38px */
      color: #ffffff;
      margin-bottom: 60px; /* Increased from 40px */
      padding-bottom: 15px; /* Increased from 10px */
      border-bottom: 3px solid #e97132; /* Increased border thickness from 2px */
      text-align: center;
      text-transform: uppercase; /* Added uppercase for emphasis */
      letter-spacing: 1px; /* Added letter spacing */
      font-weight: bold; /* Added bold weight */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Added shadow for depth */
      position: relative;
      z-index: 1;
    }
    .offerings-container {
      margin-bottom: 120px; /* Increased from 70px */
    }
    .offerings-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px; /* Increased from 40px */
    }
    .offering-row {
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, #17395b 0%, #123049 100%);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
      min-height: 300px;
      position: relative;
      border: 1px solid rgba(160, 43, 147, 0.2);
    }
    .offering-row:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    .offering-image {
      width: 40%;
      height: 100%;
      min-height: 300px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .offering-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(18, 48, 73, 0.4);
    }
    .offering-content {
      width: 60%;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .offering-icon {
      background-color: rgba(255, 255, 255, 0.15);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 36px;
      color: #ffffff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      animation: pulse 3s infinite ease-in-out;
    }
    .offering-row:nth-child(even) {
      flex-direction: row-reverse;
    }
    .offering-title {
      font-size: 32px;
      margin-bottom: 15px;
      color: #ffffff;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    .offering-description {
      font-size: 20px;
      line-height: 1.6;
      color: #ffffff;
    }
    @media (max-width: 768px) {
      .offering-row, .offering-row:nth-child(even) {
        flex-direction: column;
      }
      .offering-image, .offering-content {
        width: 100%;
      }
      .offering-image {
        min-height: 200px;
      }
    }
    .benefits {
      margin-bottom: 70px;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }
    .benefit-box {
      background-color: #15344f;
      border-radius: 10px;
      padding: 30px;
      flex: 1 1 calc(50% - 15px);
      min-width: 300px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .benefit-box.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .benefit-box h3 {
      font-size: 26px;
      margin-bottom: 15px;
      color: #ffffff;
    }
    .benefit-box p {
      font-size: 20px;
      line-height: 1.6;
    }
    .cta-container {
      display: flex;
      gap: 40px; /* Increased from 30px */
      margin-top: 80px; /* Increased from 60px */
      flex-wrap: nowrap;
    }
    .cta-section {
      background: linear-gradient(135deg, #8a2480, #a02b93); /* Gradient background */
      border-radius: 15px; /* Increased radius for distinction */
      padding: 50px 40px; /* Increased top/bottom padding from 40px */
      text-align: center;
      flex: 1;
      min-width: 0;
      animation: fadeIn 1s ease 0.5s forwards;
      opacity: 0;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* Stronger shadow */
      border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
      transition: transform 0.3s ease;
      overflow: hidden;
    }
    .cta-section:hover {
      transform: translateY(-5px);
    }
    .cta-section::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%);
      z-index: -1;
    }
    .cta-section h3 {
      font-size: 40px; /* Increased size from 36px */
      margin-bottom: 25px;
      color: #ffffff;
    }
    .cta-section p {
      font-size: 24px; /* Increased size from 22px */
      margin-bottom: 35px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }
    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #a02b93;
      color: #ffffff;
      font-size: 24px; /* Increased size from 22px */
      font-weight: bold;
      padding: 15px 30px;
      border-radius: 8px; /* Less rounded corners */
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      min-width: 220px;
    }
    .cta-button:hover {
      background-color: #bb35ac;
      transform: translateY(-3px);
    }
    .cta-button .button-icon {
      margin-right: 12px;
      font-size: 24px;
    }
    .cta-button:before {
      display: none;
    }
    .cta-button:hover .button-icon {
      background-color: transparent;
      transform: none;
    }
    @media (max-width: 768px) {
      .cta-container {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
      }
      .cta-section {
        flex: 1 1 100%; /* Full width on small screens */
        margin-bottom: 20px;
      }
      .cta-section h3 {
        font-size: 32px; /* Smaller on mobile but still larger than before */
      }
      .cta-section p {
        font-size: 22px; /* Adjusted for mobile */
      }
    }
    .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 */
    }

    /* Add more spacing for the Why Choose section */
    .why-choose-section {
      margin-top: 40px; /* Reduced from 100px since we now use dividers */
      margin-bottom: 40px; /* Reduced from 100px since we now use dividers */
      padding: 50px; /* Increased from 30px */
      background-color: rgba(18, 48, 73, 0.1); /* Very subtle background */
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    /* Adjust the benefits section margin to work with the container */
    .why-choose-section .benefits {
      margin-bottom: 20px; /* Reduced since the container already has margin */
    }
    
    /* Adjust the section title when inside the why choose section */
    .why-choose-section .section-title {
      margin-top: 10px; /* Less margin since container has padding */
    }
    
    .why-choose-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 70% 30%, rgba(160, 43, 147, 0.08) 0%, transparent 70%);
      z-index: 0;
    }

    /* Fixed section divider styling */
    .section-divider {
      height: 3px;
      width: 250px; /* Increased from 150px for better visibility */
      background: #e97132; /* Solid color instead of gradient */
      margin: 80px auto;
      opacity: 0.8; /* Increased from 0.7 */
      border-radius: 2px;
      box-shadow: 0 0 8px rgba(160, 43, 147, 0.5); /* Added subtle glow effect */
    }
    
    /* Background elements */
    .bg-element {
      position: absolute;
      opacity: 0.03;
      pointer-events: none;
      z-index: 0;
      color: #a02b93;
    }
    
    .bg-element.network {
      top: 5%;
      right: 3%;
      font-size: 250px;
      transform: rotate(15deg);
    }
    
    .bg-element.data {
      bottom: 10%;
      left: 2%;
      font-size: 200px;
      transform: rotate(-12deg);
    }

    /* 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 */
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes slideInFromLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes slideInFromRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }


/* --- 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);
}
