* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #8DC63F;
    --secondary-color: #1E2A2D;
    --text-color: #222222;
    --bg-color: #F5F7F6;
    --light-gray: #D9E1E0;
    --border-color: #B5C9B8;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.inco-main {
    width: 100%;
    height: 100vh;
    background-color: yellow;
}

.inco-head {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../assets/hero-img/Logistics\ Images\ –\ Browse\ 3\,579\,283\ Stock\ Photos\,\ Vectors\,\ and\ Video.jpeg');
    /* url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80'); */
    background-size: cover;
    background-position: bottom;
    padding: 100px 0;
    /* padding-top: 80px; */
    text-align: center;
    color: #fff;
    position: relative;
}

.inco-head h1 {
    font-size: 2.5rem;
}

.inco-head a {
    color: #fff;
    text-decoration: none;
}



.inco-section {
  width: 100%;
  background-color: var(--bg-color);
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.inco-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.inco-column {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: var(--shadow);
}

.inco-title {
  font-size: 24px;
  color: var(--secondary-color);
  border-left: 5px solid var(--primary-color);
  padding-left: 12px;
  margin-bottom: 25px;
  font-weight: 600;
}

.inco-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inco-list li {
  border-bottom: 1px solid var(--light-gray);
  padding: 15px 0;
}

.inco-list li:last-child {
  border-bottom: none;
}

.inco-list h3 {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 6px;
}

.inco-list h3 span {
  font-weight: normal;
  color: var(--text-color);
  font-size: 14px;
}

.inco-list p {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .inco-title {
    font-size: 22px;
  }
  .inco-column {
    padding: 25px 20px;
  }
}

@media (max-width: 600px) {
  .inco-container {
    gap: 25px;
  }

  .inco-title {
    font-size: 20px;
  }

  .inco-list h3 {
    font-size: 15px;
  }

  .inco-list p {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  /* .inco-column{
    padding: 25px 5px;
  }   */
}