/* ใช้ตกแต่งและจัดการ footer ของเว็บไซต์ */
.footer {
    background-color: #1d2230;
    color: white;
    padding: 80px 20px;
    font-size: 16px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .footer-logo img {
    height: 40px;
  }
  
  .footer-brand {
    font-size: 25px;
    font-weight: bold;
  }
  
  .footer-desc {
    line-height: 1.6;
    color: #ccc;
  }
  
  .footer-right {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }
  
  .footer-contact p {
    margin: 4px 0;
    color: #ccc;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #aaa;
  }
  
  .footer-social a {
    margin-left: 12px;
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
    color: #00ff55;
  }
  