/* Base styles */
body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  margin: 0;
  padding: 0 20px;
  text-align: center;
}

/* Headings */
h1 {
  color: #2c6e49;
  margin-top: 30px;
}

h2 {
  color: #65d997;
  margin-top: 40px;
}

h3 {
  color: #65d997;
  margin-top: 20px;
}

/* Container for blocks */
.block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

/* Individual block */
.block {
  width: 130px;
  height: 130px;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 110, 73, 0.15);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.block:hover {
  background-color: #e0f7ef;
  transform: translateY(-5px);
}

/* Icons */
.block img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Labels */
.block p {
  margin: 0;
  font-size: 14px;
  color: #2c3e50;
  font-weight: 600;
}

.block-number {
  font-size: 44px;
  font-weight: bold;
  color: #46026b;
  margin-bottom: 10px;
}


/* Description box */
.description-box1 {
  margin: 40px auto;
  padding: 20px;
  max-width: 600px;
  background-color: #eed4fc; /* Lightest purple background */
  border: 2px dashed #46026b; /* A slightly darker purple for the border */
  border-radius: 10px;
  color: #46026b; /* A darker purple for the text, ensuring readability */
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

/* Description box - Light Red Theme */
.description-box2 {
  margin: 40px auto;
  padding: 20px;
  max-width: 600px;
  background-color: #f2fbf7; /* Light green background */
  border: 2px dashed #2c6e49;
  border-radius: 10px;
  color: #1c3b2f;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}


/* Description box */
.description-box3 {
  margin: 40px auto;
  padding: 20px;
  max-width: 600px;
  background-color: #e3f2fd;         /* Light blue background */
  border: 2px dashed #1565c0;        /* Medium blue dashed border */
  border-radius: 10px;
  color: #0d47a1;                    /* Dark blue text */
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}


.button-row {
  display: flex;
  justify-content: center; /* Center the buttons */
  flex-wrap: wrap;         /* Allow wrap on smaller screens */
  gap: 10px;               /* Add space between buttons */
  margin: 20px auto;
}

.button-31 {
  background-color: #cef7e5;
  border-radius: 999px;
  color: #2c6e49;
  border: none;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-31:hover {
  background-color: #b3daff;
  color: #2c6e49;
}


.button-40 {
  background-color: #2c6e49;
  border: 1px solid transparent;
  border-radius: .75rem;
  box-sizing: border-box;
  color: #29db75;
  cursor: pointer;
  flex: 0 0 auto;
  font-family: 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5rem;
  padding: .75rem 1.2rem;
  text-align: center;
  text-decoration: none #65d997; solid;
  text-decoration-thickness: auto;
  transition-duration: .2s;
  transition-property: background-color,border-color,color,fill,stroke;
  transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: auto;
}

.button-40:hover {
  background-color: #374151;
}

.button-40:focus {
  box-shadow: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .button-40 {
    padding: .75rem 1.5rem;
  }
}

/* Section Heading */
.section-heading {
  color: #003366;
  font-size: 22px;
  margin: 40px 0 20px;
  text-align: left;
  border-bottom: 2px solid #cce5ff;
  padding-bottom: 5px;
}

/* Reference container with one-block-per-row */
.reference-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

/* Individual reference block */
.reference-block {
  background-color: #eed4fc;
  color: #002b45;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 51, 102, 0.1);
  font-size: 14px;
  line-height: 1.6;
  max-width: 100%;
  width: 100%;
}

.reference-block3 {
  background-color: #f2fbf7;
  color: #002b45;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 51, 102, 0.1);
  font-size: 14px;
  line-height: 1.6;
  max-width: 100%;
  width: 100%;
}


.image-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Enlarged card style for screenshots */

.image-card {
  background-color: #e6f2ff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.15);
  padding: 15px;
  width: 90%;
  max-width: 450px;  /* Increased width for screenshot size */
  text-align: center;
  color: #00334d;
  font-size: 18px;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-6px);
}

/* Larger image display */
.image-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: contain;
}
