/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & basic styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #4CAF50;
  padding: 20px;
  text-align: center;
}

header .logo h1 {
  color: white;
}

header nav ul {
  list-style: none;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin: 0 15px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-button {
  background-color: #4CAF50;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #45a049;
}

/* Section Styles */
section {
  padding: 40px 20px;
  text-align: center;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-content img {
  width: 300px;
  height: auto;
}

ul {
  list-style: none;
}

ul li {
  margin: 10px 0;
}

/* Gallery */
.gallery-images {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.gallery-images img {
  width: 200px;
  height: auto;
}

/* Contact Form */
form input, form textarea {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
}

form button {
  padding: 15px 30px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #45a049;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}
