/* Global Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #f9f9f9;
}

/* Wrapper Styles */

.wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

/* Header Styles */

.cs-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
  margin-bottom: -50px; 
}

h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
   color: #00A5CF
}

/* Content Styles */

p {
  font-size: 18px;
  margin-bottom: 20px;
   color: #343f52;
}

/* Footer Styles */

/* footer {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
} */

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px;
  text-align: center;
}

footer p {
  margin-bottom: 10px;
   font-size: 14px;
}

/* Responsive Styles */

@media (max-width: 600px) {
   .wrapper {
    margin: 20px auto;
    padding: 10px;
  }
  h1 {
    font-size: 24px;
  }
  p {
    font-size: 16px;
  }
  .cs-wrapper {
    height: auto;
    padding: 10px;
  }
}