body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

header {
  background-color: #2d78c870;
  color: #fff;
  padding: 20px 0;
}

main {
  padding: 20px;
}

.about-section {
  background-color: #ffffff;
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-section h1 {
  font-size: 2.5rem;
  color: #5a5a5a;
  margin-bottom: 20px;
  text-align: center;
}

.about-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-section p strong {
  font-weight: bold;
}

nav a {
  text-decoration: none;
  color: #6200ea;
  margin: 0 10px;
  font-size: 1.2em;
}

nav a:hover {
  text-decoration: underline;
}

nav .current {
  color: white;
  background-color: #444;
  pointer-events: none;
}

footer {
  margin-top: 20px;
  font-size: 0.9em;
  color: #666;
}

form {
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

form input, form textarea, form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #6200ea;
  color: white;
  border: none;
  cursor: pointer;
}
form button:hover {
  background-color: #4500b0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  padding: 10px;
  margin: 0 auto;
  max-width: 800px;
}
.gallery img {
  width: 100%;
  height: auto;
  border: 2px solid #6200ea;
  border-radius: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.welcome-header {
  background-color: #e77c00;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.welcome-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.welcome-header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background-color: #fff;
  color: #e77c00;
  padding: 12px 24px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #e77c00;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #e77c00;
  color: #fff;
  cursor: pointer;
}

/* Intro Section */
.intro-section {
  background-color: #ffffff;
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #5a5a5a;
}

.intro-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.intro-section .cta-btn {
  margin-top: 20px;
}
