.hero-dangerous {
  padding: 100px 20px;
  background: #ffffff;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-container h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-container p {
  font-size: 18px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #e11d07; /* teal button */
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #ffffff;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-container h1 {
    font-size: 30px;
  }

  .hero-container p {
    font-size: 16px;
  }
}




.dangerous-info {
  padding: 100px 20px;
  background: #ffffff;
}

.dangerous-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.dangerous-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 24px;
}

.dangerous-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
}

/* RIGHT IMAGE */
.dangerous-image {
  position: relative;
}

.dangerous-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* PURPLE HIGHLIGHT BOX */
.highlight-box {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: #e11d07;
  color: #ffffff;
  padding: 24px 26px;
  border-radius: 14px;
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.highlight-box p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dangerous-container {
    grid-template-columns: 1fr;
  }

  .highlight-box {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
  }
}


.dg-section {
  padding: 90px 20px;
  background: #ffffff;
}

.dg-container {
  max-width: 1100px;
  margin: 0 auto 70px;
  text-align: center;
}

/* HEADINGS */
.dg-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.dg-subtitle {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* TWO LIST CARDS */
.dg-two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dg-list-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.dg-list-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dg-list-card li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #334155;
}

.dg-list-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e11d07;
  font-weight: 700;
}

/* DIVIDER */
.dg-divider {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.dg-icon {
  width: 48px;
  height: 48px;
  background: #14b8a6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.dg-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.dg-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 60px;
}

.dg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dg-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.dg-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f1edff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dg-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #e11d07;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dg-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.dg-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

/* Responsive */
@media (max-width: 992px) {
  .dg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dg-grid {
    grid-template-columns: 1fr;
  }
}




.dg-features {
  background: #f9f9ff;
  padding: 80px 20px;
}

.dg-features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.dg-features-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* CONTENT */
.dg-features-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.dg-intro {
  font-size: 15px;
  color: #475569;
  margin-bottom: 30px;
  max-width: 520px;
}

/* FEATURE LIST */
.dg-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.dg-feature-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.dg-icon {
  width: 44px;
  height: 44px;
  background: #ecfdfb;
  color: #14b8a6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.dg-feature-list h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.dg-feature-list p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* BUTTON */
.dg-btn {
  background: #e11d07;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
}

.dg-btn:hover {
  background: #000;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dg-features-container {
    grid-template-columns: 1fr;
  }

  .dg-features-content h2 {
    font-size: 28px;
  }
}



.dg-purple-section {
  background: #e11d07;
  padding: 80px 20px;
}

.dg-purple-container {
  max-width: 1200px;
  margin: auto;
}

.dg-purple-title {
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.35;
}

/* GRID */
.dg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.dg-info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.dg-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 14px 0 10px;
}

.dg-info-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ICON */
.dg-icon-circle {
  width: 44px;
  height: 44px;
  background: #ecfdfb;
  color: #14b8a6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* LIST */
.dg-info-card ul {
  padding-left: 18px;
  margin: 10px 0 14px;
}

.dg-info-card li {
  font-size: 13.5px;
  color: #475569;
  margin-bottom: 6px;
}

/* LINKS */
.dg-link {
  font-size: 13.5px;
}

.dg-link a {
  color: #e11d07;
  font-weight: 500;
  text-decoration: none;
}

.dg-link a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dg-card-grid {
    grid-template-columns: 1fr;
  }

  .dg-purple-title {
    font-size: 26px;
  }
}



.why-cargoz-section {
  padding: 90px 20px;
  background: #ffffff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.why-subtitle {
  max-width: 820px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 14px 0 10px;
}

.why-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* ICON */
.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e9f9f7;
  color: #14b8a6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

/* CTA */
.why-cta {
  margin-top: 50px;
}

.why-btn {
  background: #14b8a6;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.why-btn:hover {
  background: #0ea5a0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 26px;
  }
}


.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #0f172a;
}

.bullet-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e11d07; /* purple bullet */
  font-size: 18px;
}
