/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #c7ff9a 0%, #fad0c4 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #282359;
  padding: 20px 40px;
  color: rgb(219, 219, 219);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-align: center;
  box-shadow: 0 4px 8px #282359;
}

.logo {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 390px;
  height: auto;
  border-radius: 20%;
  box-shadow: 0 4px 10px #282359
}

header h1 {
  margin-bottom: 10px;
  font-size: 2.8rem;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 600;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffe066;
}

#hero {
  background: linear-gradient(135deg, #29dd6e 0%, #36e082 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

#hero button {
  background-color: #ff6f91;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(255,111,145,0.5);
  transition: background-color 0.3s ease;
}

#hero button:hover {
  background-color: #f3d3da;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #ff6f91;
}

#about p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

.product-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  background: #ffdde1;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(255, 111, 145, 0.3);
  font-weight: 700;
  color: #ff6f91;
  font-size: 1.3rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(255, 111, 145, 0.5);
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input, textarea {
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid #ff6f91;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #42e96c;
}

button[type="submit"] {
  background-color: #ff6f91;
  border: none;
  padding: 15px;
  color: white;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 8px rgba(255,111,145,0.5);
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #ff4c70;
}

footer {
  text-align: center;
  padding: 20px;
  background: #ff6f91;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 -4px 8px rgba(255, 111, 145, 0.4);
}
