/* Footer Section */
#footer-section {
    background-color: #333E48;
    padding: 50px 0;
    width: 100%;
}
/* Top Divider */
#footer-divider {
    border-top: 2px solid #ccc;
    width: 100%;
    margin-bottom: 30px;
}

/* Footer Content Layout */
#footer-section-row {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    padding: 20px 40px;
    gap: 5%;
}

/* Left Column - Logo & Contact */
#footer-section-logo-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 40px; /* Moves left column inward */
}

#footer-section-logo-column ul {
    padding: 0;
}

#footer-section-logo-column ul li {
    font-size: 16px;
    color: #FFFFFF;
	text-align: left;
}

/* Right Column - Client Resources */
#footer-section-links-column {
  flex: 1;
  display: flex;
  justify-content: flex-end;  /* push the block to the right side */
  padding-right: 40px;
}

#footer-section-links-column > * {
    text-align: left; /* ensures header and links are left-aligned */
    width: fit-content; /* shrinks content width so left alignment looks natural */
}

.quick-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;     /* left-aligns header and links */
  text-align: left;
}

.contact-header {
	color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
	text-decoration: underline;
}

.quick-links-header {
	color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 12px 0;
	text-decoration: underline;

}

#quick-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#quick-links li {
    margin-bottom: 10px;
}

.quick-links-item {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.quick-links-item:hover {
    color: #90B9B4;
}

/* Bottom Footer Section */
#footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    padding: 20px 40px;
    font-size: 16px;
    color: #555;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}

/* Copyright (Left) */
#footer-left {
    flex: 1;
    text-align: left;
    padding-left: 40px;
	color: #B0BEC5;
}


/* Privacy & Terms Links (Right) */
#footer-right {
    flex: 1;
    text-align: right;
    padding-right: 40px;
}
#footer-right a {
	color: #90B9B4;
}

#footer-right a:hover {
	color: #2E7369;
}

.legal-links {
	color: #2E7369;
}

.footer-link {
    text-decoration: none;
    color: #007bff;
    margin-left: 20px;
    font-size: 16px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Payment Button */
.payment-button {
    background-color: #007bff;
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s;
    font-weight: bold;
}

.payment-button:hover {
    background-color: #0056b3;
}

#phone-num {
	color: #D4A017;
	font-size: 15px;
}
#phone-num:hover {
	color: #B8860B;
	font-size: 16px;

}

#email-link {
	color: #D4A017;
	font-size: 15px;

}

#email-link:hover {
	color: #B8860B;
	font-size: 16px;


}

#disclaimer {
	color: white;
	max-width: 50%;
	margin: auto;
}
#disclaimer p {
	text-align:center;
	font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.office-info {
		align-items: center;
	}
    #footer-section-row {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 30px;
    }

    #footer-section-logo-column, #footer-section-links-column {
        padding: 0;
        align-items: center;
    }

    #footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    #footer-right {
        text-align: center;
        margin-top: 10px;
    }
}