body {
  font-family: 'Poppins', sans-serif;
  background-color: #FFF5F7;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #2A2B2D;
}

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

/* Contact Section */
.container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.container h2 {
  color: #2A2B2D;
  margin-bottom: 10px;
}

.container p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

/* Form Styling */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm label {
  text-align: left;
  font-weight: 600;
  color: #2A2B2D;
}

#contactForm input,
#contactForm textarea {
  width: 580px;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #FFF5F7;
  outline: none;
  transition: 0.3s ease-in-out;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #2A2B2D;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #999;
  font-style: italic;
}

#contactForm textarea {
  height: 120px;
  resize: none;
}

#contactForm button {
  background: #2A2B2D;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

#contactForm button:hover {
  background: #2A2B2D;
}

/* Response Message */
#responseMessage {
  margin-top: 10px;
  font-weight: bold;
  color: #2A2B2D;
}

/* Navbar */
/* Navbar */
.navbar {
    background-color:  #2A2B2D;
    display: flex;
    width: 100%;
    max-width: 1520px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    height: 90px;
    box-shadow: 0 2px 5px rgba(42, 43, 45, 0.1);
    margin: 0 auto;
}

.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.navbar-title {
    font-size: 32px;
    font-weight: bold;
    color:  #FFF5F7;
    flex-grow: 1;
    text-align: center;
}

.footer {
    background-color:  #2A2B2D;
    text-align: center;
    padding: 15px;
    width: 100%;
    margin-top: 40px;
    color: #FFF5F7;
    font-size: 16px;
    font-weight: bold;
}

/* Logo Styling */
.logo-container {
    width: 60px;
    height: 60px;
    background-color: #FFF5F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 50px;
    font-weight: 600;
    color:  #2A2B2D;
    font-family: 'Times New Roman';
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

/* Back Button */

/* --- Custom Animated Back Button --- */
.back-button {
  display: block;
  position: absolute;
  top: 120px;
  left: 20px;
  width: 56px;
  height: 56px;
  margin: 0;
  overflow: hidden;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: 0;
}

.back-button:before,
.back-button:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 7px;
}

.back-button:before {
  border: 4px solid #4A403A;
  transition: opacity 0.4s ease-in-out, transform 0.5s ease-in-out;
}

.back-button:after {
  border: 4px solid #2A2B2D;
  transform: scale(1.3);
  transition: opacity 0.4s ease-in-out, transform 0.5s ease-in-out;
  opacity: 0;
}

.back-button:hover:before {
  opacity: 0;
  transform: scale(0.7);
}

.back-button:hover:after {
  opacity: 1;
  transform: scale(1);
}

.button-box {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.button-elem {
  display: block;
  width: 20px;
  height: 20px;
  margin: 17px 18px 0 18px;
  transform: rotate(180deg);
  fill: #4A403A;
}

.back-button:hover .button-box {
  transition: 0.4s;
  transform: translateX(-56px);
}
  /* Responsive Styling */

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 10px;
    align-items: flex-start;
  }

  .logo-container {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    font-size: 30px;
  }

  .navbar-title {
    font-size: 20px;
    text-align: center;
    margin-top: 8px;
    width: 100%;
  }

  .footer {
    font-size: 14px;
    padding: 12px;
  }

  .back-button {
    top: 80px;
    left: 10px;
    width: 50px;
    height: 50px;
  }

  .button-elem {
    margin: 15px 15px 0 15px;
    width: 18px;
    height: 18px;
  }

  .container {
    width: 92%;
    margin: 20px auto;
    padding: 15px;
  }

  .container h2 {
    font-size: 20px;
  }

  .container p {
    font-size: 14px;
  }

  #contactForm input,
  #contactForm textarea {
    width: 100%;
    font-size: 14px;
  }

  #contactForm button {
    font-size: 15px;
    width: 100%;
  }
}
