* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f8fafc;
  color: #1e293b;
}



.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.header-logo {
  font-size: 24px;
  font-weight: bold;
}

.header-nav {
  display: flex;
  gap: 40px;
}

.header-link {
  text-decoration: none;
  color: #334155;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

.header-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #16a34a;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.header-link:hover {
  color: #16a34a;
}

.header-link:hover::after {
  width: 100%;
}



.hero {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  animation: fadeIn 1s ease-in-out;
}

.hero-container {
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-item {
  background: white;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
  cursor: pointer;
}

.hero-item:hover {
  transform: translateY(-5px);
  background: #16a34a;
  color: white;
}

.hero-galery {
  display: flex;
  gap: 20px;
}

.hero-photo {
  width: 50%;
  border-radius: 20px;
  transition: 0.5s;
}

.hero-photo:hover {
  transform: scale(1.05);
}



.contact-section {
  padding: 100px 60px;
  max-width: 600px;
}

.contact-title {
  font-size: 40px;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-input,
.contact-textarea {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 16px;
  transition: 0.3s;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #16a34a;
  outline: none;
  box-shadow: 0 0 10px rgba(22,163,74,0.2);
}

.contact-button {
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: #16a34a;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-button:hover {
  background: #15803d;
  transform: translateY(-3px);
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info {
  max-width: 300px;
  font-size: 16px;
  line-height: 1.6;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #1e1e1e;
  color: white;
  margin-top: 50px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.about-section {
  padding: 100px 60px;
  max-width: 1000px;
  animation: fadeIn 1s ease-in-out;
}

.about-title {
  font-size: 42px;
  margin-bottom: 30px;
}

.about-text {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
}

.about-features {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}
.about-image {
  margin-top: 40px;
}

.about-photo {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.about-photo:hover {
  transform: scale(1.03);
}





