* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
}

/* Base Header Styles */
.hhhddd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hhhddd-logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font-size: 25px;
}

.hhhddd-logo img {
  height: 40px;
}

.hhhddd-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hhhddd-nav a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
}

.hhhddd-btn {
  background-color: #4cd964;
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.hhhddd-btn:hover {
  background-color: #45c55a;
}

/* Hamburger icon */
.hhhddd-menu-icon {
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hhhddd-menu-icon {
    display: block;
  }

  .hhhddd-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 15px 0;
    background: white;
    border-top: 1px solid #eee;
  }

  body.nav-open .hhhddd-nav {
    display: flex;
  }

  .hhhddd-btn {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hhhddd-title {
    font-size: 2.2rem;
  }

  .hhhddd-subtitle {
    font-size: 1rem;
  }

  .hhhddd-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hhhddd-nav {
    align-items: center;
    gap: 10px;
  }

  .hhhddd-hero {
    padding: 40px 15px;
  }
}

.kontackkrt-value a {
  text-decoration: none;
  color: #333;
}

.card-cont {
  max-width: 1200px;
  margin: 0 auto;
}

.card-cont__header {
  text-align: center;
  margin-bottom: 30px;
}

.card-cont__title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.card-cont__subtitle {
  color: #666;
  font-size: 1.1rem;
}

.card-cont__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-cont__item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 1;
  transform: translateY(0);
}

.card-cont__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-cont__item.hidden {
  display: none;
}

.card-cont__logo {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #f0f0f0;
}

.card-cont__content {
  flex: 1;
  min-width: 0;
}

.card-cont__company {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.card-cont__description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.card-cont__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .card-cont__rating {
    justify-content: center;
  }
}

.card-cont__stars {
  display: flex;
  gap: 2px;
}

.card-cont__star {
  width: 16px;
  height: 16px;
  color: #ff6b6b;
}

.card-cont__star.filled {
  color: #ff6b6b;
}

.card-cont__star.empty {
  color: #ddd;
}

.card-cont__actions {
  flex-shrink: 0;
}

.card-cont__button {
  background: #4ade80;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.card-cont__button:hover {
  background: #22c55e;
}

.card-cont__more {
  text-align: center;
  margin-top: 30px;
}

.card-cont__more-btn {
  background: #6366f1;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.card-cont__more-btn:hover {
  background: #4f46e5;
}

.card-cont__more-btn.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-cont__item {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .card-cont__logo {
    width: 60px;
    height: 60px;
  }

  .card-cont__company {
    font-size: 1.3rem;
  }

  .card-cont__description {
    font-size: 0.9rem;
  }

  .card-cont__button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .card-cont__item {
    padding: 12px;
    gap: 12px;
  }

  .card-cont__logo {
    width: 50px;
    height: 50px;
  }

  .card-cont__company {
    font-size: 1.2rem;
  }

  .card-cont__button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}



.footercdhkj-wrapper {
  background-color: #f2fbf4;
  padding: 30px 20px 70px;
  border-top: 1px solid #e5e5e5;
}

.footercdhkj-text {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  color: #222;
}

.ktdfootr {
  display: flex;
  justify-content: flex-start;
}

.footercdhkj-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 16px;
  color: #444;
  padding: 10px 20px 0;
}

.footercdhkj-links a {
  text-decoration: none;
  color: #444;
}

.footercdhkj-banner {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 90%;
  z-index: 999;
}

.footercdhkj-banner a {
  text-decoration: none;
  font-weight: bold;
  color: #0066dd;
}

.footercdhkj-banner span {
  font-weight: bold;
}

.footercdhkj-close {
  background-color: #0066dd;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .footercdhkj-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footercdhkj-text {
    padding: 0 10px;
    font-size: 16px;
  }

  .footercdhkj-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footercdhkj-close {
    align-self: flex-end;
  }
}


.kontackkrt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.kontackkrt-image img {
  width: 70%;
  border-radius: 10px;
}

.kontackkrt-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.kontackkrt-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.kontackkrt-number {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
  margin: 10px 0;
}

.kontackkrt-subtitle {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  margin-top: 20px;
}

.kontackkrt-description {
  font-size: 0.95rem;
  color: #4a4a4a;
  max-width: 700px;
}

.kontackkrt-button {
  margin-top: 20px;
}

.kontackkrt-button button {
  background-color: #2ecc71;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.kontackkrt-button button:hover {
  background-color: #27ae60;
}

@media (max-width: 768px) {
  .kontackkrt-title {
    font-size: 1.2rem;
  }

  .kontackkrt-number {
    font-size: 1.1rem;
  }

  .kontackkrt-subtitle {
    font-size: 1rem;
  }
}



.kontackkrt-section {
  padding: 20px;
  font-family: sans-serif;
}

.kontackkrt-container {
  max-width: 1100px;
  margin: auto;
}

.kontackkrt-desc {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.kontackkrt-table {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.kontackkrt-row {
  display: flex;
  flex-direction: row;
  padding: 15px 0;
  border-top: 1px solid #eee;
}

.kontackkrt-label {
  width: 200px;
  font-weight: bold;
  color: #000;
}

.kontackkrt-value {
  flex: 1;
  color: #333;
}

.kontackkrtimg-section {
  padding: 20px 0;
  background: #ffffff;
  text-align: center;
}

.kontackkrtimg-container {
  max-width: 900px;
  margin: auto;
}

.kontackkrtimg-image {
  max-width: 100%;
  height: auto;
}

.kontackkrt-cta {
  text-align: center;
  padding: 40px 20px;
}

.kontackkrt-cta-title {
  font-size: 24px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

.kontackkrt-cta-text {
  font-size: 18px;
  margin-bottom: 20px;
  color: #444;
}

.kontackkrt-cta-button {
  background: #34d399;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .kontackkrt-row {
    flex-direction: column;
  }

  .kontackkrt-label {
    width: 100%;
    margin-bottom: 5px;
  }

  .kontackkrt-cta-title {
    font-size: 20px;
  }

  .kontackkrt-cta-text {
    font-size: 16px;
  }
}