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

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

hr {
    border:none;
    height: 1px;
    width:100%;
    background-color: #AAAAAA;
    margin: 20px;
}

/* Main Container */
.website-down {
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

/* Logo */
.logo-section {
  margin-top: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.logo-section img {
  max-width: 300px;
  height: auto;
  display: block;
}

/* Maintenance Message */
.message-section {
  max-width: 600px;
  margin-bottom: 80px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.message-section p {
  margin-bottom: 15px;
}

/* Section Title */
.section-title {
  font-family: 'Westinghouse Sans', 'Arial', sans-serif;
  font-size: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.5px;
}

/* Form Container */
.form-container {
  width: 100%;
  max-width: 900px;
  margin-bottom: 80px;
}

.form-placeholder {
  background-color: #d9d9d9;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border-radius: 4px;
}

.form-placeholder-text {
  color: #000000;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .website-down {
    padding: 20px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .logo-section {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .logo-section img {
    max-width: 200px;
  }

  .message-section {
    margin-bottom: 50px;
    font-size: 14px;
  }


}

@media (max-width: 480px) {
  .logic-section {
    padding: 15px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .form-container {
    max-width: 100%;
  }



  .message-section {
    margin-bottom: 30px;
    font-size: 13px;
  }
}
