  body {
    font-family: 'Inter', sans-serif;
  }

  footer {
    background-color: #ffffff;
    color: #333;
    padding: 60px 0 40px;
    border-top: 1px solid #eee;
  }

  .footer-container {
    /*border-style: groove;*/
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns:  repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer-column{
    text-align: justify;
  }

  .footer-column h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: #64312c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-column p,
  .footer-column li,
  .footer-column a {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-decoration: none;
  }

  .footer-column a:hover {
    color: #ffa600ff;
    transition: color 0.3s ease;
  }

  .footer-social a {
    margin-right: 15px;
    font-size: 20px;
    color: #ffa600ff;
    transition: transform 0.3s ease;
  }

  .footer-social a:hover {
    transform: scale(1.2);
    color: #333;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #888;
    margin-top: 40px;
  }

  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
  }

  /* Custom brand colors */
  .social-icon.linkedin { background: #0A66C2; color: #fff; }
  .social-icon.facebook { background: #1877F2; color: #fff; }
  .social-icon.instagram { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
  }
