body {
  background-color: #efeeef;
}

.contact-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
  }
  
  .contact-details {
    margin-bottom: 2rem;
  }
  
  .contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
  }
  
  .contact-details strong {
    display: inline-block;
    width: 100px;
    color: #2c3e50;
  }
  
  .map-container {
    height: 250px;
    margin-top: auto;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .social-links {
    margin-top: 1.5rem;
  }
  
  .social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #3498db;
    text-decoration: none;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }
  
  .contact-form textarea {
    height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
  }
  
  .submit-btn:hover {
    background: #333;
  }
  
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
    
    .contact-info {
      order: 2;
    }
  }  


  .footer {
    background-color: #000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-column {
    flex: 1;
    margin: 10px;
    min-width: 200px;
    color: #ffffff;
  }

  .footer-column h2 {
    color: #fff;
  }

  .footer-column img {
    width: 30px;
    height: 30px;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
  }

  .footer-column p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

  .footer-column ul li {
    margin: 5px 0;
  }

  .footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-column ul li a:hover {
    color: #fff;
    text-decoration: underline;
  }

  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }

  .social-icons a {
    color: #bbb;
    font-size: 20px;
    text-decoration: none;
  }

  .social-icons a:hover {
    color: #fff;
  }

  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      text-align: center;
    }

    .footer-column {
      margin: 20px 0;
    }
  }