/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f7fa;
  color: #333;
}

/* Container */
.container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

/* Header Section */
header {
  background: linear-gradient(45deg, #ff5733, #ffbd33, #33ff57);
  color: white;
  padding: 40px 20px;
  text-transform: uppercase;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin: 5px 0;
  font-size: 1.2rem;
}

.profile-img {
  border-radius: 50%;
  border: 5px solid white;
  margin-top: 15px;
}

/* About Section */
#about {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: white;
  padding: 50px 20px;
}

#about h2 {
  font-size: 2rem;
}

/* Services Section */
#services {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: white;
  padding: 50px 20px;
}

#services ul {
  list-style-type: none;
  padding: 0;
}

#services li {
  font-size: 1.2rem;
  margin: 10px 0;
}

/* Address Section */
#address {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  color: white;
  padding: 50px 20px;
}

/* Contact Section */
#contact {
  background: linear-gradient(45deg, #03a9f4, #00bcd4);
  color: white;
  padding: 50px 20px;
}

#contact a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

#contactForm {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 20px;
}

#contactForm input, 
#contactForm textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

#contactForm button {
  background: #ffeb3b;
  color: #333;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

#contactForm button:hover {
  background: #ffc107;
}

/* Footer */
footer {
  background: linear-gradient(45deg, #673ab7, #9c27b0);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1rem;
}
