html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

header {
  background: #333;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  color: #a57acc;
}

.logo {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-left: auto;
}

main {
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

main h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

main p {
  font-size: 16px;
  margin-bottom: 20px;
}

.input-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.input-area input {
  padding: 10px;
  width: 250px;
  border: 2px solid #007bff;
  border-radius: 20px;
  outline: none;
}

.input-area button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: #007bff;
  color: #fff;
  cursor: pointer;
}

.input-area button:hover {
  background: #0056b3;
}

.contact-info {
  margin-top: 20px;
  font-size: 16px;
}

.contact-info i {
  margin-right: 5px;
  color: red;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  color: #fff;
  padding: 20px 40px;
  font-size: 14px;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}
/* === cmcaq === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
}


header {
  background: #222;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

header .logo {
  font-weight: bold;
  font-size: 18px;
}

header nav {
  display: flex;
}

header nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-size: 16px;
}


.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 40px;
  color: white;
}

.banner-content {
  max-width: 600px;
}

.banner h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.banner p {
  font-size: 20px;
}

.banner button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffcc00;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}


.container, .form-container {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}



@media (max-width: 768px) {


  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  header nav {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  header nav a {
    margin: 8px 0;
    font-size: 18px;
  }

  
  .banner {
    height: 50vh;
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner h1 {
    font-size: 28px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner button {
    font-size: 16px;
    padding: 10px 20px;
  }


  .container, .form-container {
    padding: 20px;
    margin: 10px;
  }

 
  form input {
    font-size: 16px;
    padding: 10px;
  }

  button {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .banner h1 {
    font-size: 22px;
  }
  .banner p {
    font-size: 14px;
  }
  header nav a {
    font-size: 14px;
  }
}
