 /* Footer Styles */
    .custom-footer {
      background: #314243;
      color: #fff;
      font-size: 1.05rem;
      letter-spacing: 0.01em;
      width: 100%;
      margin: 0;
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    .footer-content {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 48px 80px 28px;
      gap: 60px;
      max-width: 1400px;
      margin: 0 auto;
      flex-wrap: wrap;
      text-align: center; /* center alignment for all content */
    }

    .footer-col {
      flex: 1 1 150px;
      min-width: 150px;
    }

    .footer-col h4 {
      font-size: 16px;
      margin-bottom: 15px;
      font-weight: 600;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 13px;
      font-size: 15px;
    }

    .footer-col ul li a {
      font-size: 15px;
      color: #fff;
      text-decoration: none;
      opacity: 0.89;
      transition: opacity 0.2s;
    }

    .footer-col ul li a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    .footer-right {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    .footer-contacts {
      color: #c4cccc;
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .footer-contacts span {
      color: #fff;
      font-weight: 500;
      margin-left: 5px;
    }

    .footer-social {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 6px;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #90a2a3;
      color: #314243;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      font-size: 1.2rem;
      opacity: 0.88;
      transition: background 0.2s, color 0.2s;
    }

    .footer-social a:hover {
      background: #fff;
      color: #314243;
    }

    .footer-bottom {
      background: #506062;
      display: flex;
      justify-content: center;
      padding: 13px 0;
    }

    .footer-logo-section {
      flex: 1 1 200px;
      min-width: 220px;
      text-align: center;
    }

    .footer-logo-image img {
      width: 108px;
      height: 50px;
      margin-bottom: 12px;
    }

    .footer-description {
      font-size: 12px;
      color: #cdd7d7;
      line-height: 1.5;
      opacity: 0.9;
    }

    @media (max-width: 700px) {
      .footer-content {
        flex-direction: column;
        gap: 25px;
        padding: 28px 18px 13px;
      }
    }

    /* Mobile Responsive Grid */
@media (max-width: 700px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 25px;
    padding: 28px 18px 13px;
    text-align: center;
  }

  .footer-col {
    min-width: unset; /* prevent forcing large widths */
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .footer-content {
    grid-template-columns: 1fr; /* single column on very small screens */
  }
}