/* ==========================================================================
   1. FUENTES, VARIABLES Y RESETEO
   ========================================================================== */
   @font-face {
    font-family: 'PacemakerFont';
    src: url('/fonts/Tt0594m0.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  :root {
    --primary: #0a3d62;
    --secondary: #3c6382;
    --accent: #e55039;
    --bg-light: #f1f2f6;
    --text-dark: #2f3542;
    --text-light: #57606f;
    --white: #ffffff;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(10, 61, 98, 0.15);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }
  
  body {
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Componentes de Botones Globales */
  .btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
  }
  
  .btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 25px;
  }
  
  .btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
  }
  
  .btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    text-align: center;
    align-self: flex-start;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: var(--secondary);
  }
  
  .btn-block {
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 1.1rem;
  }
  
  /* Encabezados Internos Comunes */
  .page-header {
    background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(60, 99, 130, 0.85)), 
                url('/img/banner1.png') center/cover no-repeat;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
  }
  
  .page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  /* ==========================================================================
     2. ESTRUCTURA GLOBAL E INMUTABLE DE LA TOP BAR (Fija en todo tamaño)
     ========================================================================== */
  .top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
  }
  
  /* Fuerza el diseño horizontal de punta a punta siempre */
  .top-bar .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important; 
  }
  
  .top-bar .contact-info {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
  }
  
  .top-bar span, 
  .top-bar a {
    color: var(--white);
    text-decoration: none;
    white-space: nowrap; /* Impide que un texto largo (como el mail) se rompa en dos renglones */
  }
  
  .top-bar i {
    margin-right: 8px;
  }
  
  /* ==========================================================================
     3. CABECERA, NAVEGACIÓN Y FOOTER BASE
     ========================================================================== */
  header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo h1, 
  .logo h1 span {
    font-family: 'PacemakerFont', Arial, sans-serif;
    font-size: 4rem;
    letter-spacing: 1px;
    color: var(--secondary);
  }
  
  .desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .desktop-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
  }
  
  .desktop-nav a:hover {
    color: var(--secondary);
  }
  
  .desktop-nav a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
  }
  
  .mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
  }
  
  footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 30px 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  footer h4 {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
  
  footer p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #dfe4ea;
  }
  
  footer i {
    margin-right: 12px;
    color: #7bed9f;
  }
  
  /* ==========================================================================
     4. CONTENIDOS DE LAS VISTAS (INDEX, PRODUCTOS, EMPRESAS, CONTACTO)
     ========================================================================== */
  
  /* --- INICIO (index.html) --- */
  .hero {
    background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(60, 99, 130, 0.85)), 
                url('/img/banner1.png') center/cover no-repeat;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .home-products-section {
    padding: 40px 0;
  }
  
  .home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .home-product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
  }
  
  .home-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .hp-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    overflow: hidden;
  }
  
  .home-product-card:hover .hp-image {
    transform: scale(1.06);
  }
  
  .hp-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--white);
    position: relative;
    z-index: 2;
  }
  
  .hp-content h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .hp-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
  }
  
  .home-product-card:hover .hp-link {
    gap: 10px;
  }
  
  .about-page-section-bg {
    background-color: var(--bg-light);
    padding: 70px 0;
    width: 100%;
    border-top: 1px solid #e1e2e6;
    border-bottom: 1px solid #e1e2e6;
  }
  
  .about-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-text-column h3 {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .about-text-column h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2.2rem;
  }
  
  .about-text-column p {
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: justify;
    line-height: 1.7;
  }
  
  .about-image-column {
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .about-company-img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    max-height: 450px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--white);
    transition: var(--transition);
  }
  
  .about-company-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    opacity: 1;
  }
  
  .values-section {
    padding: 40px 0 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .value-card {
    background: var(--white);
    border: 1px solid var(--secondary);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--secondary);
  }
  
  .value-card h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  
  .value-card p {
    color: var(--text-light);
    margin-bottom: 25px;
  }
  
  /* --- PRODUCTOS (productos.html) --- */
  .products-section {
    padding: 60px 0 100px 0;
  }
  
  .products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
  }
  
  .filter-btn {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .filter-btn:hover, 
  .filter-btn.active {
    background: var(--secondary);
    color: var(--white);
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  }
  
  .product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f2f6;
    display: flex;
    flex-direction: column;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }
  
  .product-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 3px solid var(--accent);
  }
  
  .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .product-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
  }
  
  /* --- EMPRESAS / REPRESENTACIONES (empresas.html) --- */
  .partners-section {
    padding: 60px 0 100px 0;
  }
  
  .partners-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
  }
  
  .partners-intro strong {
    color: var(--primary);
  }
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
  }
  
  .partner-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--accent);
  }
  
  .partner-logo-container {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .partner-real-logo {
    width: 70%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .partner-card:hover .partner-real-logo {
    opacity: 1;
    transform: scale(1.08);
  }
  
  .partner-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .partner-origin {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  
  .partner-info p:not(.partner-origin) {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
  }
  
  /* --- CONTACTO (contacto.html) --- */
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .contact-form-container h3, 
  .contact-details h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
  }
  
  .contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  
  .form-group input, 
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdde1;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    resize: none;
  }
  
  .form-group input:focus, 
  .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 8px rgba(60, 99, 130, 0.2);
  }
  
  .detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  
  .detail-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 20px;
    margin-top: 5px;
  }
  
  .detail-item h4 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  
  .detail-item p {
    color: var(--text-light);
    line-height: 1.5;
  }
  
  .map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--bg-light);
  }
  
  .map-container iframe {
    display: block;
  }
  
  /* ==========================================================================
     5. SISTEMA RESPONSIVO REESTRUCTURADO Y SEGURO
     ========================================================================== */
  
  /* --- TABLETS EN ADELANTE (Mantienes tal cual pediste) --- */
  @media (max-width: 992px) {
    .about-main-layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .about-company-img {
      max-height: 350px;
    }
    
    .partners-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
  }
  
  /* --- DISPOSITIVOS MÓVILES STANDARD (Max-width: 768px) --- 
     ¡CORREGIDO!: Sin afectar a la barra superior */
  @media (max-width: 768px) {
    .hero, .page-header {
      padding: 40px 0;
    }
    
    .hero h2, .page-header h2 {
      font-size: 2rem;
    }
  
    /* Menú Hamburguesa */
    .mobile-menu-toggle {
      display: block;
    }
  
    .desktop-nav {
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--white);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }
  
    .desktop-nav.open {
      max-height: 350px;
      opacity: 1;
      border-top: 1px solid var(--bg-light);
    }
  
    .desktop-nav ul {
      flex-direction: column;
      gap: 0;
      padding: 10px 0;
    }
  
    .desktop-nav a {
      display: block;
      padding: 15px 5%;
      border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }
    
    .desktop-nav a.active {
      border-bottom: none;
      border-left: 4px solid var(--accent);
      padding-left: calc(5% - 4px);
    }
  
    /* Adaptación de Grillas a una sola columna */
    .home-products-grid,
    .products-grid,
    .partners-grid,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .values-section {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  /* --- DISPOSITIVOS SMARTPHONE GRANDES (Max-width: 440px) --- 
     ¡CORREGIDO!: La top bar se comprime en tamaño pero mantiene su grilla intacta */
  @media (max-width: 440px) {
    .top-bar {
      font-size: 0.55rem; /* Ajuste sutil de tipografía global para ahorrar espacio */
      padding: 6px 0;
    }
    
    .top-bar .contact-info {
      gap: 12px; /* Espaciado más compacto entre teléfono y mail */
    }
  
    header {
      padding: 12px 0;
    }
  
    .logo h1, 
    .logo h1 span {
      font-size: 2.3rem;
      white-space: nowrap;
      letter-spacing: 0px;
    }
  
    .hero h2, .page-header h2 {
      font-size: 1.2rem;
    }
  
    .hero p, .page-header p {
      font-size: 0.8rem;
    }


      /* --- CONTROL DE CABECERAS INTERNAS EN UNA SOLA LÍNEA --- */
    .page-header h2 {
      font-size: 1.5rem;          /* Tamaño seguro para pantallas de 400px */
      white-space: nowrap;        /* Fuerza al título a quedarse en una sola línea */
      letter-spacing: -0.5px;     /* Junta un poquito las letras para ganar espacio */
    }

    .page-header p {
      font-size: 0.8rem;          /* Achica el subtítulo para que no se parta */
      white-space: nowrap;        /* Fuerza al subtítulo a quedarse en una sola línea */
    }

    .about-text-column h3 {
      color: var(--accent);
      text-transform: uppercase;
      font-size: 1rem; /* Modifica este valor (Ej: 1.1rem o 18px) */
      letter-spacing: 1px;
    }
    .about-text-column h2 {
      color: var(--primary);
      margin-bottom: 25px;
      font-size: 1.3rem; /* Modifica este valor (Ej: 2.5rem o 40px) */
    }
    .about-text-column p {
      margin-bottom: 20px;
      color: var(--text-light);
      text-align: justify;
      line-height: 1.7;
      font-size: 0.90rem; /* Agrega o modifica esta línea (Ej: 1.05rem o 17px) */
    }

    .value-card {
      background: var(--white);
      border: 1px solid var(--secondary);
      padding: 28px 18px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border-bottom: 4px solid var(--secondary);
      max-width: 330px;  /* Limita el ancho horizontal de cada tarjeta */
      margin: 0 auto;    /* Las centra perfectamente dentro de su espacio */
      font-size: 0.8rem;    /* Reduce un poco la letra (antes 0.95rem) */
      margin-bottom: 18px;  /* Acerca el texto al botón (antes 25px) */
    }

  
    .partners-intro {
      text-align: justify;
      max-width: 800px;
      margin: 0 auto 50px auto;
      font-size: 0.95rem;      /* <--- ESTA ES LA LÍNEA QUE DEBES CAMBIAR */
      color: var(--text-light);
      line-height: 1.8;
    }

    .products-filter {
      gap: 8px;
    }
  
    .filter-btn {
      padding: 6px 5px;
      font-size: 0.6rem;
    }
  
    .contact-form-container h3{
        font-size: 1.2rem;
    }

    .contact-details h3{
        font-size: 1.2rem;
    }
  
    .contact-form {
      padding: 20px 15px;
    }
    
    .contact-section {
        padding: 40px 0;
    }

    footer {
      padding: 30px 0;
    }
  
    footer .footer-grid {
      display: flex !important;
      flex-direction: column !important;
      text-align: center !important;
    }
  
    footer h4 {
      font-size: 1.1rem !important;
      margin-bottom: 15px !important;
      margin-top: 10px;
    }
  
    footer p {
      font-size: 0.75rem !important;
      margin-bottom: 10px !important;
    }
  }
  
  /* --- DETECTA PANTALLAS ULTRA ANGOSTAS (Max-width: 365px) --- 
     Especial para terminales muy delgados como el Samsung A36 */
  @media (max-width: 365px) {
    .container {
      width: 80%; /* Expandimos ligeramente el contenedor para aprovechar los bordes físicos */
    }
  
    /* Ajuste crítico en la barra superior para resoluciones tipo 360px */
    .top-bar {
      font-size: 0.55rem; /* Reducción milimétrica de fuente para que todo quepa en una fila */
    }
    
    .top-bar .contact-info {
      gap: 8px;
    }
  
    /* Ocultamos el pedazo "/PacemakerSRL" del texto dejando solo el icono fa-linkedin */
    .top-bar .social-links a {
      font-size: 0.85rem;
      display: inline-block;
      max-width: 18px;
      overflow: hidden;
      vertical-align: middle;
    }
  
    .logo h1, 
    .logo h1 span {
      font-size: 2.05rem; /* Ajuste para que el icono hamburguesa jamás lo pise de lado */
    }

      /* --- CONTROL EXTREMO PARA DISPOSITIVOS ULTRA ANGOSTOS --- */
    .page-header h2 {
      font-size: 1.3rem;          /* Reducción exacta para que "Representaciones Internacionales" entre justo */
      white-space: nowrap;        /* Bloquea el salto de línea */
      letter-spacing: -0.5px;
    }

    .page-header p {
      font-size: 0.68rem;         /* Tamaño ultra compacto para subtítulos largos como el de contacto */
      white-space: nowrap;        /* Bloquea el salto de línea */
      letter-spacing: -0.2px;
    }
  


    .hero h2, .page-header h2 {
      font-size: 1.25rem;
    }
  
    .hp-content h4, .product-info h3 {
      font-size: 1.15rem;
    }
  
    .hp-content, .product-info {
      padding: 15px;
    }

    .about-text-column h3 {
      color: var(--accent);
      text-transform: uppercase;
      font-size: 1rem; /* Modifica este valor (Ej: 1.1rem o 18px) */
      letter-spacing: 1px;
    }
    .about-text-column h2 {
      color: var(--primary);
      margin-bottom: 25px;
      font-size: 1.3rem; /* Modifica este valor (Ej: 2.5rem o 40px) */
    }
    .about-text-column p {
      margin-bottom: 20px;
      color: var(--text-light);
      text-align: justify;
      line-height: 1.7;
      font-size: 0.90rem; /* Agrega o modifica esta línea (Ej: 1.05rem o 17px) */
    }


  
    /* Los botones de categorías mutan a formato apilado porque horizontalmente colapsan */
    
    .partners-intro {
      text-align: justify;
      max-width: 800px;
      margin: 0 auto 50px auto;
      font-size: 0.95rem;      /* <--- ESTA ES LA LÍNEA QUE PARA CAMBIAR */
      color: var(--text-light);
      line-height: 1.8;
    }
    
    .products-filter {
      flex-direction: column;
      align-items: center;
      gap: 6px;
      width: 100%;
    }
  
    .filter-btn {
      width: 80%;
      text-align: center;
      padding: 6px 5px;
    }

    .contact-section {
     padding: 40px 0;
    }
  
    .contact-form {
      padding: 15px 10px;
    }

    .contact-form-container h3{
        font-size: 1.2rem;
    }

    .contact-details h3{
        font-size: 1.2rem;
    }
  
    .form-group input, .form-group textarea {
      padding: 10px;
      font-size: 0.9rem;
    }
  
    .partner-card {
      padding: 25px 15px;
    }
  
    .partner-logo-container {
      height: 90px;
    }
  
    footer h4 {
      font-size: 1.rem !important;
    }
  
    footer p {
      font-size: 0.65rem !important;
    }
    
  }