/* Layout specific overrides extracted from inline styles */

.logo-img {
    height: 40px;
    vertical-align: middle;
}

/* Newsletter full-width bar */
.newsletter-section {
    background: #156481;
    color: #fff;
    width: 100%;
    position: relative;
    /* Removed 100vw and negative margins that caused horizontal overflow */
}

.newsletter-btn {
    background: #156481;
    border: 2px solid #fff;
    color: #fff;
}

.paper-plane-icon {
    color: #fff;
}

/* Footer background */
.footer-bg {
    background: url("/images/footer-bg.png")
        center center/cover no-repeat;
}

.footer-bottom-bar {
    background: #ff7043;
    color: #fff;
}

/* Back to top button */
#backToTopBtn {
    color: #ff7043;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: none;
    border: 2px solid #ff7043;
}

/* Custom scrollbar - theme colors (same as LTR) */
* {
    scrollbar-width: thin;
    scrollbar-color: #125875 #e9ecef;
}
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
*::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 5px;
}
*::-webkit-scrollbar-thumb {
    background: #125875;
    border-radius: 5px;
    border: 2px solid #e9ecef;
}
*::-webkit-scrollbar-thumb:hover {
    background: #0d4359;
}
*::-webkit-scrollbar-corner {
    background: #e9ecef;
}
