/* Newsletter title extracted from inline style */
.newsletter-title {
    font-size: 25px;
}
/* Home page banner background with WebP fallback */
.banner-home-bg {
    background-image: url("../images/background/background-header.webp"), url("../images/background/background-header.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eaf6fa;
}

/* Home page big title */
.home-big-title {
    font-size: 75px;
}
/* FAQ.html callPopup modal extracted styles */
#callPopup.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#callPopup.popup-overlay.active {
    display: flex;
}
#callPopup .popup-modal {
    background: #fff;
    padding: 2em;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    margin: auto;
}
.popup-call-btn {
    margin-right: 10px;
}
/* Custom for FAQ.html extracted inline styles */
/* (shared with other pages for consistency) */
/* FAQ.html banner background with WebP fallback */
.banner-faq-bg {
    background-image: url("../images/background/FAQ.webp"), url("../images/background/FAQ.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eaf6fa; /* fallback color */
}
/* Custom for 404.html extracted inline styles */
.popup-maxwidth-380 {
    max-width: 380px;
}
/* Popup overlay for modals (global, with higher z-index and solid fallback) */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 20000;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: background 0.2s;
}
.popup-overlay.active {
    display: flex;
}
.popup-modal {
    background: #fff;
    padding: 2em;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    margin: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.popup-modal-wide {
    max-width: 420px;
    width: 95vw;
    padding: 2em 1.5em;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    border-radius: 10px;
}
.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #888;
    cursor: pointer;
}
.popup-header {
    color: #1a3c34;
}
.popup-btn-margin {
    margin-right: 10px;
}
.popup-cursor {
    cursor: pointer;
}
.popup-col-right {
    padding-right: 6px;
}
.popup-col-left {
    padding-left: 6px;
}
.popup-input {
    width: 100%;
}
.popup-submit-btn {
    background: #1a3c34;
    border: none;
}
.popup-newsletter-header {
    font-size: 35px;
}
