footer {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #a2b9c5;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo h1 {
    font-size: 48px;
    font-weight: bold;
}

.footer-logo p {
    font-size: 16px;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom p {
    font-size: 12px;
    margin-top: 10px;
}

.back-to-top {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: black; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
  }
  
  .back-to-top:hover {
    background-color:brown; /* Darker button on hover */
  }
  