body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

header {
  background-color: #ff6f00;
  color: white;
  padding: 1em 0;
  text-align: center;
}

nav {
  margin-top: 1em;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2em 0;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1em 0;
  margin-top: 2em;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75em;
  margin: 0.5em 0 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #ff6f00;
  color: white;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.2);
}

.value-item {
  background: #f1f7ff;
  border-left: 5px solid #ff6f00;
  padding: 16px 20px;
  margin-bottom: 16px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.value-item strong {
  color: #ff6f00;
}

.contact-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  flex: 1 1 300px;
  max-width: 400px;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 20px;
}

.contact-label {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 10px;
}

.contact-info {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
}

@media (max-width: 600px) {
  nav {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }

  .value-item {
    padding: 14px 16px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-info {
    font-size: 1.2rem;
  }
}
