/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Set minimum height to full viewport height */
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    width: 100%;
    position: relative; /* Ensure relative positioning */
    bottom: 0; /* Stick to the bottom of the viewport */
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    margin: 20px;
}

.about {
    flex: 3; /* Adjust width for larger content */
    text-align: left;
}

.logo-text {
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 200px;
    border: none;
    border-radius: 5px 0 0 5px;
    margin-right: 5px;
}

.newsletter-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
}

.links ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.links ul li {
    margin-bottom: 10px;
}

.links ul li a {
    color: #FFFFFF; /* White color */
}

.social .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social .social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    font-size: 1.5rem;
}

.social .social-icons a svg {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    background-color: #222;
    padding: 10px 0;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.footer-bottom p {
    margin: 0;
}
