footer {
    background-color: #f9f9f9;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    color: #555;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Wrap content on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    row-gap: 40px; /* Add vertical spacing between rows */
    column-gap: 60px; /* Add horizontal spacing between columns */
}

.footer-section {
    flex: 1;
    margin: 0 90px;
    min-width: 206px;
    text-align: left;
}

.footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.footer-section ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #00a0d2;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: none;
}

.footer-section p {
    margin: 5px 0;
}

.footer-section .contact-info {
    font-size: 0.9em;
    color: #666;
}

.footer-section .contact-info a {
    color: #00a0d2;
    font-weight: bold;
}

footer p {
    text-align: center;
    color: #888;
    margin-top: 30px;
}

#consentBox {
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

#consentContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 90%;
    width: 400px;
}

#consentContent p {
    color: #858585;
    margin: 10px 0 20px 0;
    line-height: 1.5;
	text-align: left;
}

#consentContent .buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.consentButton,
.rejectButton {
    padding: 12px 30px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consentButton {
    background: #00a0d2;
    margin-right: 10px;
}

.rejectButton {
    color: #111211;
    background: transparent;
    border: 2px solid #00a0d2;
    text-decoration: none;
}

#consentHeader {
    font-size: 25px;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 768px) {
  footer p {
  	font-size: 12px;
  }
}