/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to bottom, #fff4ed, #ffe0c2);
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f77c1f;
  padding: 10px 40px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 250px;
  margin-right: 10px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 20px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #ffffff;
}

/* Contact Section */
.contact-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  margin-bottom: 20px;
}

.contact-container {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
  font-size: 28px;
  color: #f77c1f;
  margin-bottom: 10px;
  text-align: center;
}

.contact-container p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  color: #555;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form button {
  width: 100%;
  background-color: #f77c1f;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e96b0c;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fefefe;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  position: relative;
}

.footer-left {
  color: #333;
}

.footer-right a {
  margin-left: 20px;
  text-decoration: none;
  color: #2c3e50;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-right a:hover {
  color: #00bfa5;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

/* Media Queries */
@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-container h1 {
    font-size: 24px;
  }

  .contact-form button {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 25px 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 15px;
  }
}

/* Responsive adjustments for tablets and smaller devices */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .logo img {
    height: 150px;
    margin-bottom: 10px;
  }

  nav a {
    margin: 10px 10px;
    display: block;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-right a {
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }

  .main-wrapper,
  .blog-layout,
  .terms-container {
    flex-direction: column !important;
    margin: 20px;
    padding: 20px;
  }

  .image,
  .image2,
  .sidebar,
  .post-content {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* For very small mobile devices */
@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  .post-content {
    flex-direction: column;
  }

  .post-content img {
    width: 100%;
  }

  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}