

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f0; 
  margin: 0;
  padding: 0;
}

.header {
  background: linear-gradient(to right, #8b4513, #228b22); 
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .logo {
  font-size: 2em;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.header .nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
}

.header .nav a {
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: background 0.3s;
}

.header .nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.header .contact-info {
  text-align: right;
}

.header .contact-info p {
  margin: 0;
  font-size: 0.9em;
}

.header .btn {
  background: #fff;
  color: #228b22;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.header .btn:hover {
  background: #e0e0e0;
}

.hero {
  background: url('./images/hero-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero .btn {
  background: #228b22;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #1e7e34;
}

section {
  padding: 60px 0;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #8b4513;
  font-size: 2.5em;
}

p {
  margin-bottom: 20px;
}

.value-prop {
  background: #fff;
}

.mission {
  background: #e8f5e8;
}

.values {
  background: #fff;
}
.values ul {
  list-style: none;
  padding: 0;
}
.values li {
  margin-bottom: 15px;
  color: #228b22;
}

.difference {
  background: #f9f9f7;
}

.team {
  background: #fff;
}

.categories .card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  background: #f9f9f7;
  transition: transform 0.3s;
}

.categories .card:hover {
  transform: translateY(-5px);
}

.categories .card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.categories .card h3 {
  color: #228b22;
  margin-bottom: 15px;
}

.categories .card .btn {
  background: #8b4513;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.categories .card .btn:hover {
  background: #a0522d;
}

.why-choose {
  background: #e8f5e8;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.why-choose li {
  font-size: 1.2em;
  margin: 10px 0;
  color: #228b22;
}

.testimonials {
  background: #fff;
}

.testimonials .swiper-slide {
  text-align: center;
  padding: 40px;
}

.testimonials p {
  font-style: italic;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.testimonials cite {
  font-weight: bold;
  color: #8b4513;
}

.cta {
  background: linear-gradient(to right, #228b22, #8b4513);
  color: white;
  text-align: center;
}

.cta h2 {
  margin-bottom: 30px;
}

.cta .btn {
  background: #fff;
  color: #228b22;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  transition: background 0.3s;
}

.cta .btn:hover {
  background: #e0e0e0;
}

.footer {
  background: #333;
  color: white;
  padding: 40px 0;
}

.footer h4 {
  color: #228b22;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #228b22;
}

.footer iframe {
  width: 100%;
  height: 200px;
  border: 0;
  margin-top: 20px;
}

.footer form {
  display: flex;
  margin-top: 10px;
}

.footer input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
}

.footer button {
  padding: 10px 20px;
  background: #228b22;
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.footer button:hover {
  background: #1e7e34;
}

.footer p:last-child {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #555;
  padding-top: 20px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #333;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 1001;
}

#cookie-banner p {
  margin: 0;
  display: inline;
  margin-right: 20px;
}

#cookie-banner a {
  color: #228b22;
  text-decoration: underline;
}

#cookie-banner button {
  background: #228b22;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

#cookie-banner button:hover {
  background: #1e7e34;
}

@media (max-width: 768px) {
  .header .nav ul {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2em;
  }
  .categories .row {
    text-align: center;
  }
  .footer .row > div {
    margin-bottom: 30px;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}