
    /* Add your CSS styles here */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    header {
      background-color: #EC7C26;
      font-size: 25px;
      color: #000;
      padding: 2px;
      text-align: center;
    }

    .container {
      display: flex;
    }

    .column {
      flex: 1;
      padding: 10px;
    }

    .sub-column {
      flex: 1;
    }

    @media (max-width: 960px) {
      .container {
          flex-direction: column;
      }

      .column {
          flex: auto;
      }

      .sub-column {
          flex: auto;
      }
    }

    section {
      padding: 20px;
    }
    .vozni-park-bg {
      background-color: #EC7C26;
      color: #000;
      text-align: center;
      padding: 0.5%;
    }
    .bus-image {
      max-width: 100%;
      height: auto;
    }
    .bus-info {
      margin-top: 20px;
      text-align: center;
    }
    .bus-name {
      font-size: 24px;
      font-weight: bold;
    }
    .bus-description {
      font-size: 16px;
    }
    .contact-info {
      
      text-align: center;
    }
    .contact-title {
      font-size: 24px;
      font-weight: bold;
    }
    .contact-details {
      font-size: 16px;
    }
    footer {
        background-color: #EC7C26; /* Set the background color */
        color: #000; /* Set the text color to white */
        text-align: center; /* Center-align the content within the footer */
        padding: 20px; /* Add padding for spacing */
    }
    
