@charset "utf-8";
/* CSS Document */
main {
    flex: 1; /* Pushes the footer down */
}
body {
    padding: 0px;
    margin: 0;
    font-family: Arial, sans-serif;
}
body {
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.footer {
	 position: relative;
	border-top: solid 1px black;
    background-color: #f5f5f5;
    padding: 20px 0px  0px;
    color: #333;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    margin: 0 15px;
}

.footer-section h4 {
    margin-top: 0;
    font-size: 16px;
    color: #000;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #49494A;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
	padding: 10px 20px;
}

.social-icons {
    display: flex;
    align-items: center;
	
}

.social-icons a {
    color: black;
    margin-left: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #5A5A5A;
}

.social-icon {
    font-size: 20px;
    color: #646464;
	padding: 0px 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
      background-color: #282c34;
            color: #ffffff;
	 font-size: 12px;
}
.footer-bottom a { color: #ffffff;}

.footer-bottom-left {
    flex: 1;
}

.footer-bottom-right {
    flex: 1;
    text-align: right;
}

.footer-bottom-right a {
    color: #007bff;
    text-decoration: none;
    margin-left: 15px;
}

.footer-bottom-right a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin: 10px 0;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom-left,
    .footer-bottom-right {
        margin: 10px 0;
    }
    .footer-bottom-right {
        text-align: center;
    }
}
