.bg-section-alt {
    background: #f8f9fb;
}

/* Prevent an admin-uploaded logo (any resolution) from ever breaking the header layout */
.logo-area img,
.rs-header .logo-area img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
.canvas-logo img {
    max-height: 50px;
    width: auto;
}

/* Why Choose Us — unique card design with icon circle, hover lift and number badge */
.rs-choose-us .choose-item-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 45px 30px 35px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 25px rgba(20, 20, 43, 0.06);
    border-bottom: 3px solid transparent;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.rs-choose-us .choose-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 20, 43, 0.12);
    border-bottom-color: #ff3115;
}
.rs-choose-us .choose-item-num {
    position: absolute;
    top: 6px;
    right: 18px;
    font-size: 46px;
    font-weight: 800;
    color: #f2f2f5;
    line-height: 1;
    z-index: 0;
    user-select: none;
}
.rs-choose-us .choose-icon-wrap {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    line-height: 88px;
    border-radius: 50%;
    background: #fff4de;
    margin: 0 auto 22px;
    transition: background 0.35s ease;
}
.rs-choose-us .choose-item-card:hover .choose-icon-wrap {
    background: #ffb606;
}
.rs-choose-us .choose-icon-wrap i {
    font-size: 34px;
    color: #ffb606;
    transition: color 0.35s ease;
}
.rs-choose-us .choose-item-card:hover .choose-icon-wrap i {
    color: #fff;
}
.rs-choose-us .choose-item-card h4 {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1a1a1a;
}
.rs-choose-us .choose-item-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #6d6d6d;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Announcements / notice ticker — styled to match theme accent instead of plain browser marquee */
.rs-notice-bar {
    background: #fff4f2;
    border-left: 4px solid #ff3115;
    padding: 12px 0;
    overflow: hidden;
}
.rs-notice-bar .container {
    display: flex;
    align-items: center;
}
.rs-notice-bar marquee {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}
.rs-notice-bar .fa-bullhorn {
    color: #ff3115;
    margin-right: 10px;
    flex-shrink: 0;
}
