:root {
    --primary-color: #ff3d4d;
    --secondary-color: #8b0000;
    --separator-color: rgba(255, 255, 255, 0.15);
    --text-dark: #333;
    --text-light: #666;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .footer {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: white;
    width: 100%;
    padding: 2.5rem 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  }

  .footer-wrapper {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
  }

  .footer-section {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 0 1.5rem;
  }

  /* Vertical Separators */
  .footer-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, 
      transparent,
      var(--separator-color),
      var(--separator-color),
      transparent
    );
  }

  .section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: white;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--separator-color);
  }

  /* Logo Section */
  .logo-section {
    flex: 0 0 200px;
  }

  .logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 0px 0px;
    border-radius: 8px;
    display: inline-block;
  }

  /* Menu Section */
  .menu {
    list-style: none;
    padding: 0;
  }

  .menu li {
    margin-bottom: 0.8rem;
  }

  .menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
  }

  .menu a:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  /* Address Section */
  .address-content {
    line-height: 1.6;
  }

  .address-item {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 4px;
  }

  .address-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .address-item i {
    margin-top: 5px;
  }

  /* Contact Section */
  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 4px;
  }

  .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .contact-item i {
    width: 20px;
  }

  /* Social Media Section */
  .social-section {
    flex: 0 0 200px;
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
  }

  .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--separator-color);
  }

  /* Responsive Design */
  @media screen and (max-width: 1200px) {
    .footer-wrapper {
      justify-content: flex-start;
    }
    
    .footer-section {
      flex: 0 0 calc(33.333% - 2rem);
    }
    
    .social-section {
      flex: 0 0 calc(33.333% - 2rem);
    }

    .footer-section:nth-child(3n)::after {
      display: none;
    }
  }

  @media screen and (max-width: 768px) {
    .footer-section {
      flex: 0 0 calc(50% - 2rem);
    }
    
    .social-section {
      flex: 0 0 calc(50% - 2rem);
    }

    .footer-section:nth-child(2n)::after {
      display: none;
    }
  }

  @media screen and (max-width: 480px) {
    .footer-section,
    .social-section {
      flex: 0 0 100%;
    }

    .footer-wrapper {
      gap: 1.5rem;
    }

    .footer-section::after {
      display: none;
    }

    .social-links {
      justify-content: flex-start;
    }
  }