.reporting-content {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

  .reporting-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
  }
  .reporting-text ul{
    padding-left: 5%;
  }
   .reporting-text ul li {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
  }

.features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.features-list li {
  font-size: 18px;
  color: #374151;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 18px;
}



.dashboard-cta {
  display: flex;
  gap: 15px;
  margin-top: 0;
  justify-content: center;
}

.btn-activate, .btn-view {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-activate {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-view {
  background: #3b82f6;
  color: white;
}

.btn-activate:hover {
  background: #e5e7eb;
}

.btn-view:hover {
  background: #2563eb;
}

/* Media queries remain the same */
@media (max-width: 1024px) {
  .reporting-content {
    grid-template-columns: 1fr;
  }
  
  .reporting-text {
    order: 1;
  }
  
  .reporting-image {
    order: 2;
  }
  
  .dashboard-cta {
    justify-content: flex-start;
  }
}




/* Media queries for responsive breakpoints */
@media (max-width: 1024px) {
  .reporting-content {
    grid-template-columns: 1fr;
  }
  .reporting-text {
    width: 100%;
    order: 2;
  }
  .reporting-text p {
    max-width: 100%;
  }
  .reporting-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .reporting-content {
    grid-template-columns: 1fr;
  }
  .reporting-text {
    width: 100%;
    order: 2;
  }
  .reporting-text p {
    max-width: 100%;
  }
  .reporting-image {
    order: 1;
  }
}

@media (max-width: 375px) {
  .reporting-content {
    grid-template-columns: 1fr;
  }
  .reporting-text {
    width: 100%;
    order: 2;
  }
  .reporting-text p {
    max-width: 100%;
  }
  .reporting-image {
    order: 1;
  }
}

@media (max-width: 320px) {
  .reporting-content {
    grid-template-columns: 1fr;
  }
  .reporting-text {
    width: 100%;
    order: 2;
  }
  .reporting-text p {
    max-width: 100%;
  }
  .reporting-image {
    order: 1;
  }
}


.revenue-word {
  position: relative;
  display: inline-block;
}

.revenue-word img {
  position: absolute;
  top: 0;              
  left: 50%;
  transform: translateX(-50%);
  width: 100px;           
  height: auto;
}
