body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
}

.contact-container {
  max-width: 600px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(0,0,0,0.09);
  text-align: center;
}

.logo-box {
  margin-bottom: 20px;
}

.company-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.contact-container h1 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: #1f1f1f;
}

.contact-desc {
  color: #555;
  margin: 10px 0 25px;
  font-size: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  background: #fafafa;
  padding: 15px 20px;
  border-radius: 14px;
  margin-bottom: 18px;
  justify-content: space-between;
  border: 1px solid #e1e1e1;
}

.contact-card h2 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.contact-card p {
  margin: 2px 0 0;
  color: #444;
  font-size: 14px;
}

.icon {
  width: 40px;
  margin-right: 15px;
}

.copy-btn {
  background: #ff9800;
  border: none;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.copy-btn:hover {
  background: #e08600;
}


/* ---------------------- FOOTER ---------------------- */

.footer {
  background: #251111;
  color: #ddd;
  padding: 40px 20px 10px;
  margin-top: 60px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Logo Area */
.footer-logo {
  text-align: left;
}

.footer-logo img {
  width: 70px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff9800;
}

/* Contact Info */
.footer-contact p {
  margin: 0;
  margin-bottom: 5px;
  font-size: 14px;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 25px;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
    flex-direction: column;
  }

  .footer-links {
    align-items: center;
  }
}


