/* Basic Reset & Body */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: #121212;
  color: #fff;
  min-height: 100vh;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
nav .logo { display: flex; align-items: center; gap: 10px; color: #00bfae; font-weight: 700; font-size: 1.4em; flex-shrink: 0; margin-left: -6px; }
nav .logo img { height: 40px; width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; align-items: center; }
nav ul li a { text-decoration: none; color: #fff; font-weight: 600; transition: color 0.3s; }
nav ul li a:hover { color: #00bfae; }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.hamburger div { width: 25px; height: 3px; background: #fff; transition: all 0.3s ease; }
.hamburger.open div:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open div:nth-child(2) { opacity: 0; }
.hamburger.open div:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:768px) {
  nav ul { position: fixed; top: 60px; left: -100%; flex-direction: column; width: 100%; background: #1e1e1e; gap: 15px; padding: 20px; transition: left 0.3s ease; z-index: 999; }
  nav ul.active { left: 0; }
  .hamburger { display: flex; margin-right: -3px; }
}

/* Main Wrapper */
.terms-container {
  max-width: 1000px;
  margin: 120px auto 80px;
  padding: 0 20px;
}

/* Heading */
.terms-container h1 {
  color: #00bfae;
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 40px;
}
.terms-container h2 {
  color: #00bfae;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Paragraphs */
.terms-container p {
  color: #ccc;
  margin-bottom: 15px;
}

/* Contact List */
.contact-list {
  list-style: none;
  padding-left: 0;
}
.contact-list li {
  margin-bottom: 10px;
}
.contact-list li i {
  color: #00bfae;
  margin-right: 8px;
}

/* FORM */
.contact-form {
  background: #1e1e1e;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  margin-bottom: 30px;
}
.contact-form label {
  font-weight: 600;
  color: #00bfae;
  margin-bottom: 5px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #0f0f0f;
  color: #fff;
  font-size: 1em;
}
.contact-form textarea {
  min-height: 180px; /* taller message box */
  resize: vertical;
}
.contact-form button {
  width: 100%;
  padding: 16px;
  background: #00bfae;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #00a896;
}

/* Footer */
footer { 
  background:#1e1e1e; 
  color:#ccc; 
  padding:40px 20px; 
  font-family:'Inter',sans-serif; 
}
.footer-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:30px; }
footer h3 { color:#00bfae; margin-bottom:12px; }
footer ul { list-style:none; padding:0; line-height:1.8; }
footer ul li a, footer p a { color:#ccc; text-decoration:none; }
.footer-bottom { margin-top:40px; border-top:1px solid #333; padding-top:20px; text-align:center; font-size:0.85em; line-height:1.5; }
.footer-bottom p { color:#888; margin:0; }
.social-icons a { color:#888; margin:0 8px; font-size:1.2em; }

/* Responsive */
@media (max-width:768px) {
  .terms-container h1 { font-size: 2em; }
  .terms-container h2, .terms-container h3 { font-size: 1.2em; }
  .terms-container p, .terms-container ul li { font-size: 0.95em; }
}


/* Responsive */
@media (max-width:768px) {
  .terms-container h1 {
    font-size: 2em; /* same as About Us heading */
  }
  .contact-form textarea {
    min-height: 150px; /* more height on mobile */
  }
}
/* Other Contact Methods links in grey without underline */
.terms-container .contact-list a {
  color: #ccc;         /* grey color */
  text-decoration: none; /* remove underline */
  transition: color 0.3s;
}

.terms-container .contact-list a:hover {
  color: #00bfae;     /* optional hover color */
}
