
/* Reset margin and padding */
body {
  margin: 0;
  padding: 0;
}


    /* Footer styling */
    footer {
        background-color: #5E1201;
        color: white;
        padding: 20px;
        text-align: center;
    }

    /* Column styling */
    .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center; /* Align items vertically */
    }

    .footer-column {
        flex: 1;
        margin: 10px;
    }

    /* Logo styling */
    .logo {
        width: 200px; /* Adjust the width as needed */
        height: auto;
    }

    /* Align the text in the Contact section */
    .contact-info {
        text-align: center;
    }

    /* Remove default list-style (bullets) */
    ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    /* Responsive styling */
    @media (max-width: 768px) {
        .footer-column {
            flex-basis: 100%;
        }
    }

    /* Social icon styling */
    .social-icons {
        display: flex;
        justify-content: center;
        margin-top: 10px; /* Adjust spacing */
    }

    .social-icon {
        font-size: 2rem; /* Adjust icon size */
        margin: 0 10px; /* Adjust spacing */
        color: white; /* Icon color */
    }

    p {
        font-size: 18px;
        color: white;
        font-style: normal;
        text-align: center;
      }
      
      /* Adjustments for smaller screens */
      @media screen and (max-width: 768px) {
        p {
          font-size: 14px;
        }
      }

      ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
      }
      
      ul li a {
        color: white; /* Set text color to white */
        text-decoration: none; /* Remove underline */
      }