.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
  }

  h2 {
    color: #2d3e50;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 400;
  }

  h3 {
    color: #2d3e50;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 18px;
  }

  p {
    margin-bottom: 20px;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .images-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
  }

  .images-row img {
    flex: 1;
    max-width: calc(33.333% - 20px);
  }

  .figures {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 40px;
  }

  .figures figure {
    flex: 1;
    max-width: 32%;
  }

  .figures figcaption {
    font-size: 0.9em;
    margin-top: 8px;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    /* Remove gap between input and button */
  }

  .newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px 0 0 20px;
    font-size: 14px;
    outline: none;
  }

  .subscribe-btn {
    background-color: #555;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  }

  .subscribe-btn:hover {
    background-color: #333;
  }

  /* Add icon using pseudo-element */
  .subscribe-btn::after {
    content: "→";
    font-size: 16px;
    margin-left: 5px;
  }