
/* Footer Styling */
.footer {
    background: #222;
    color: white;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* About Section */
.footer-about {
    flex: 1;
}

.footer-about h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    color: #bbb;
}

/* Social Media Section */
.footer-social {
    flex: 2;
    text-align: center;
}

.footer-social h3 {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    font-size: 24px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2);
}

footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    font-size: 20px;
    
  }
  .footer-container div {
    flex: 1;
    min-width: 200px;
    margin: 10px;
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  .footer-links ul li a {
    color: #bbb;
    text-decoration: none;
  }
  .footer-social a {
    margin: 0 10px;
    color: #fff;
    font-size: 20px;
  }
  .footer-newsletter input {
    padding: 5px;
    width: 70%;
  }
  .footer-newsletter button {
    padding: 5px 10px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
  }
  .footer-bottom {
    border-top: 1px solid #444;
    padding: 10px 0;
    margin-top: 10px;
  }

