* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff5f8;
  color: #333;
}

/* Header */
header {
  background: #ff4f8b;
  color: white;
  padding: 15px;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #ffe3ee;
  padding: 50px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2em;
  color: #ff2e75;
}

/* Dresses Section */
.dresses {
  padding: 40px 20px;
  text-align: center;
}

.dress-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.dress {
  background: white;
  padding: 15px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.dress img {
  width: 100%;
  border-radius: 10px;
}


/* Order Section */
.order {
  background: white;
  padding: 40px 20px;
  margin-top: 40px;
  text-align: center;
}

.order form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.order input, 
.order select,
.order textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 6px;
}

.order button {
  background: #ff4f8b;
  color: white;
  padding: 12px;
  border: none;
  margin-top: 15px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.order button:hover {
  background: #ff2e75;
}

/* Delivery Section */
.delivery {
  padding: 40px 20px;
  background: #ffe3ee;
  text-align: center;
  margin-top: 40px;
}

.delivery-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ff4f8b;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.delivery-btn:hover {
  background: #ff2e75;
}

/* Footer */
footer {
  background: #ff4f8b;
  padding: 15px;
  text-align: center;
  color: white;
  margin-top: 30px;
}