/* Base styles */
body {
  box-sizing: border-box;
}

/* Section styling */
.box-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; /* Space between the boxes */
  padding: 20px;
  background-color: #f6f5ff;
}

/* Box styling */
.box {
  display: flex;
  align-items: flex-start; /* Align items at the top */
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Small logo styling */
.box-logo {
  width: 35px;
  height: 35px;
  margin:0px;
  padding:0px;
  position:left;
  margin-right:10px;  /* Space between logo and content */
  object-fit: cover;
  border-radius: 50%; /* Circular logo */
}

/* Box content styling */
.box-content {
  flex: 1;
}

.box-content h3 {
  margin: 0px; /* Space below the heading */
  font-size: 18px;
  color: #333;
}

.box-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

/* Box hover effect */
.box:hover {
  transform: translateY(-5px); /* Slight lift effect */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 768px) {
  .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .box-logo {
    margin-bottom: 10px;
  }
}
