/* Import the original styles and adapt them for React */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #E3F2FD;
}

.container {
  background: #fff;
  max-width: 1400px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin: 80px auto;
  padding: 40px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Add more styles from the original style.css */ 