* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #F1F5F9;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-top: 5rem;
}

.contact-left, .contact-right {
  flex: 1 1 500px;
  padding: 30px;
}

.contact-left {
  background-color: #e63946;
  color: #fff;
}

.contact-left h2 {
  margin-bottom: 20px;
}

.contact-left ul {
  list-style: none;
  margin-top: 20px;
}

.contact-left li {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-right h2 {
  margin-bottom: 20px;
  color: #333;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  background: #e63946;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
}

form button:hover {
  background: #d62828;
}

#responseMsg {
  margin-top: 15px;
  font-size: 15px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    padding: 20px;
  }
}

/* Social Icon */
.social-icons {
  margin-top: 30px;
}

.social-icons a {
  color: #fff;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  margin-right: 10px;
  padding: 20px;
  transition: background 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #fff;
  color: #e63946;
}
.social-icons a i{
  font-size: 1rem;
}

h1 {
  color: #e63946;
}

/* Header */
header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 1rem;
      background-color: #f8f9fb;
      color: #000000;
      box-shadow: 0 0 6px 3px #eee;
    }

    .logo {
      font-size: 1.2rem;
      font-weight: bold;
      letter-spacing: 1px;
      margin-left: 8rem;
    }
    .logo-size{
      width: 50%;
    }

    nav {
      display: flex;
      gap: 1.2rem;
      margin-right: 8rem;
    }

    nav a {
      color: #000000;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
    }
    nav a:hover{
      color: #e63946;
    }
    .active{
      color: #e63946;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 22px;
      height: 2px;
      background: #000000;
      margin: 4px 0;
    }

    @media (max-width: 600px) {
      header {
        color: #fff;
      }
      nav {
        display: none;
        flex-direction: column;
        background-color: #e63946;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 150px;
        border: 1px solid #dd5762;
        padding: 0.8rem;
        margin-right: 0;
      }
      nav a {
        color: #ffffff;
      }

      nav.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /* Footer */
    footer {
    background-color: #fff;
    color: #444;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    margin-top: 5rem;
  }

  .footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
  }

  .footer-menu a:hover {
    color: #444;
  }

  .footer-divider {
    height: 1px;
    width: 100%; /* full width divider */
    background-color: #F2F3F4;
    margin: 0.5rem 0;
  }

  .footer-copy .footer-link {
    color: #ff5c5c;
    text-decoration: none;
  }

  .footer-copy {
    font-size: 0.9rem;
    color: #5b5b5b;
    font-weight: 500;
  }
  @media (max-width: 600px) {
    .footer-copy {
    font-size: 0.7rem;
    }
  }
  
  @media (max-width: 344px) {
    .footer-copy {
    font-size: 0.5rem;
    }
  }