/* Your custom style here */root {
  /* Light theme colors */
  --primary-color: #007bff; /* Blue for primary actions */
  --background-color: #ffffff; /* White background */
  --text-color: #212529; /* Dark gray text */
}
.initial-letter-style::first-letter {
    -webkit-initial-letter: 3 2; /* For Safari: span 3 lines, drop 2 lines */
    initial-letter: 3 2; /* Span 3 lines, drop 2 lines */
    font-weight: bold;
    color: #000000;
}
 .container {
    display: flex; /* Creates the side-by-side layout */
    gap: 20px; /* Space between text and images */
    padding: 20px;
  }

  .text-side {
    flex: 3; /* Takes up 3/4 of space */
    padding: 10px;
  }

  .image-side {
    flex: 1; /* Takes up 1/4 of space */
    display: flex;
    flex-direction: column; /* Stacks images vertically */
    gap: 15px; /* Space between images */
  }

  .image-side img {
    width: 100%; /* Responsive images */
    height: auto; /* Maintains aspect ratio */
  }

  /* Optional: Responsive stacking for mobile */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  }


