.main-footer {
    background-color: #00303f;
    color: #ffffff;
    padding: 40px 20px;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-logo {
    width: 60%;
    height: auto;
    margin-bottom: 0.1rem;
}

.advanced-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 5%;
}

.advanced-list a{
    text-decoration: none;
    color: #ccc;
}

.advanced-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    font-size: 16px;
    line-height: 1.6;
}

/* Bullet icon */
.advanced-list li::before {
    content: "✓";              /* change to → ★ ● */
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #006359, #1cc3b2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Optional vertical guide line */
.advanced-list li::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 28px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e5e7eb;
}

.advanced-list li:last-child::after {
    display: none;
}

.footer-contact p {
    margin: 8px 0;
}

.footer-column p a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
}

.footer-bottom p {
    text-align: center;
    margin-top: 1rem;
    color: #fff;
    font-weight: bold;
    font-size: large;
    border-top: 1px solid #1cc3b2;
    padding-top: 2rem;
}

.newsletter-footer {
    max-width: 420px;
    color: #e5e7eb;
}

.newsletter-footer h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.newsletter-p {
    font-size: 14px;
    margin-bottom: 14px;
    color: #fff;
}

.nl-form {
    display: flex;
    background: #111827;
    border-radius: 50px;
    padding: 6px;
    border: 2px solid #1cc3b2;
}

.nl-form input, .nl-form:focus {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
}

.nl-form input::placeholder {
    color: #9ca3af;
}

/* Removing Chrome autofill background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #111827 inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 9999s ease-in-out 0s;
    border-radius: 50px;
}

.nl-form button {
    background: linear-gradient(135deg, #006359, #1cc3b2);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.nl-form button:hover {
    transform: scale(1.05);
}

/* Messages */
.nl-alert {
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
}

.nl-alert.success {
    background: #064e3b;
    color: #d1fae5;
}

.nl-alert.error {
    background: #7f1d1d;
    color: #fee2e2;
}
