
body {
    font-family: 'Inter, sans-serif', sans-serif;
}
.hero-section { background-color: #f9fafb; }
.hero-text { color: #111827; }
.cta-section { background-color: #246dff; }
.cta-text { color: #ffffff; }
.cta-button {
    background-color: #246dff;
    color: #ffffff !important;
}
.cta-button:hover { filter: brightness(1.1); }
.footer-section { background-color: #1f2937; }
.footer-text { color: #d1d5db; }

/* Banner Styles */
.banner {
    position: relative;
    padding: 1rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    min-height: 50px;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.popup-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    width: 90%;
    max-width: 500px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.popup-overlay.is-visible,
.popup-modal.is-visible {
    opacity: 1;
}
.popup-modal.is-visible {
    transform: translate(-50%, -50%) scale(1);
}
.popup-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
}
.popup-close-button:hover {
    color: #1f2937;
}
