* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #1e2a38;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dk-logo  {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}
.dk-image{
  padding-bottom: 30px;
}
.dk-nav a {
  margin-left: 20px;
  color: #eee;
  text-decoration: none;
  font-weight: 500;
}

.dk-nav a:hover {
  color: #00d8a7;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #e6f8ea, #f5fff9);
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
}

.cta-btn {
  margin-top: 30px;
  padding: 12px 30px;
  background: #246122;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1a4a18;
}

/* Features Section */
.features {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1e2a38;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #00d8a7;
}

/* Pricing Section */
.pricing {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 40px;
  color: #246122;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.plan {
  border: 2px solid #246122;
  border-radius: 12px;
  padding: 30px;
  background: #f8fdfc;
}

.plan h3 {
  margin-bottom: 10px;
  color: #246122;
}

.plan .price {
  font-size: 24px;
  margin-bottom: 15px;
  color: #246122;
}

.plan ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.plan ul li {
  margin-bottom: 10px;
}

.plan button {
  background: #246122;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.plan button:hover {
  background: #246122;
}

/* Footer */
footer {
  background: #246122;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .cta-btn {
    padding: 10px 20px;
  }
}


.dk-nav {
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
  }

  .dk-logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
  }

  .dk-menu {
    display: flex;
    gap: 20px;
  }

  .dk-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
  }

  .dk-menu a:hover {
    color: #1abc9c;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #246122;
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
    .menu {
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: #fff;
      flex-direction: column;
      gap: 15px;
      padding: 15px 20px;
      display: none;
      border-radius: 8px;
    }

    .menu.active {
      display: flex;
    }

    .hamburger {
      display: flex;
    }
  }


  .title-container {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 50px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .line {
    flex: 1;
    height: 1px;
    background-color: #246122;
  }

  .title-text {
    padding: 0 20px;
    font-size: 20px;
    font-weight: bold;
    color: #246122;
    position: relative;
  }

  .title-text::before,
  .title-text::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #246122;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }

  .title-text::before {
    left: -12px;
  }

  .title-text::after {
    right: -12px;
  }