.elementor-292 .elementor-element.elementor-element-3f7e90a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-f83a590 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --rs-dark-blue: #0A3A6A;
    --rs-red: #DA291C;
    --rs-pure-white: #ffffff;
    --rs-light-bg: #f4f8fa; /* Soft light modern background (Not dark) */
    --rs-card-bg: #ffffff; /* Clean white card base */
    --rs-text-dark: #222222; /* High contrast body text */
    --rs-text-muted: #555555;
    --rs-heading-font: 'Montserrat', sans-serif;
    --rs-body-font: 'Roboto', sans-serif;
}

.roadmax-sustainability-wrapper {
    font-family: var(--rs-body-font);
    color: var(--rs-text-dark);
    line-height: 1.8;
    background-color: var(--rs-light-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.roadmax-sustainability-wrapper * {
    box-sizing: border-box;
}

/* ==========================================
   HERO SECTION (Images remain fixed)
========================================== */
.rs-hero {
    position: relative;
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rs-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 58, 106, 0.9) 0%, rgba(244, 248, 250, 0.2) 100%);
    z-index: 1;
}

.rs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.rs-hero-content .rs-top-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    background: var(--rs-red);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

/* HERO H1: WHITE & LIGHT CYAN RED MIX */
.rs-hero-content h1 {
    font-family: var(--rs-heading-font);
    font-size: 56px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--rs-pure-white);
}

.rs-hero-content h1 span {
    font-weight: 300;
    display: block;
    color: #e2f1f6; /* Soft elegant contrasting light color */
}

/* ==========================================
   MAIN CONTAINER & ASYMMETRIC GRID
========================================== */
.rs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creative 2-column grid layout */
    gap: 35px;
}

.rs-section-label {
    grid-column: 1 / -1;
    font-size: 14px;
    color: var(--rs-dark-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    border-bottom: 2px solid var(--rs-dark-blue);
    padding-bottom: 12px;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: var(--rs-heading-font);
}

/* ==========================================
   PREMIUM LIGHT CARDS (BLOCKS)
========================================== */
.rs-block {
    background: var(--rs-card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(10, 58, 106, 0.06);
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 58, 106, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Side decorative line indicator */
.rs-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px; 
    background: var(--rs-dark-blue);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    transition: background 0.3s ease;
}

.rs-block:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 58, 106, 0.15);
    box-shadow: 0 20px 40px rgba(10, 58, 106, 0.08);
}

.rs-block:hover::before {
    background: var(--rs-red); /* Switches to dynamic red on hover */
}

/* Span layout for block number 3 to take full width */
.rs-block:nth-child(4) {
    grid-column: 1 / -1;
}

.rs-block-header {
    margin-bottom: 20px;
}

/* H2: DARK BLUE & RED COMBINATION */
.rs-block h2 {
    font-family: var(--rs-heading-font);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: var(--rs-dark-blue); /* First segment */
}

.rs-block h2 span {
    color: var(--rs-red); /* Second segment */
}

.rs-block p {
    font-size: 15px;
    color: var(--rs-text-muted);
    margin: 0 0 15px 0;
}

.rs-block strong {
    color: var(--rs-dark-blue);
}

/* ==========================================
   FEATURE LIST (CLEAN CARD STYLE)
========================================== */
.rs-feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.rs-feature-list li {
    display: flex;
    align-items: flex-start;
    background: #f8fbfd;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(10, 58, 106, 0.03);
    transition: all 0.3s ease;
}

.rs-feature-list li:hover {
    background: #ffffff;
    border-color: rgba(218, 41, 28, 0.2);
    box-shadow: 0 8px 20px rgba(218, 41, 28, 0.05);
    transform: translateY(-2px);
}

.rs-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--rs-dark-blue);
    color: var(--rs-pure-white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.rs-feature-list li:hover .rs-list-icon {
    background-color: var(--rs-red);
}

.rs-bold-text {
    font-weight: 600;
    color: var(--rs-dark-blue);
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 20px !important;
}

/* ==========================================
   FOOTER SECTION (Images remain fixed)
========================================== */
.rs-footer {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rs-footer-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 58, 106, 0.95) 0%, rgba(10, 58, 106, 0.7) 100%);
    z-index: 1;
}

.rs-footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.rs-footer-content blockquote {
    font-family: var(--rs-heading-font);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--rs-pure-white) !important;
    margin: 0 0 20px 0;
    border-left: 5px solid var(--rs-red);
    padding-left: 25px;
}

.rs-quote-author {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7) !important;
    padding-left: 30px;
}

/* ==========================================
   RESPONSIVE LAYOUT
========================================== */
@media (max-width: 992px) {
    .rs-container {
        grid-template-columns: 1fr; /* Switch grid to single column layout on tablets */
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .rs-hero { height: 400px; }
    .rs-hero-content h1 { font-size: 34px; }
    .rs-block { padding: 25px; }
    .rs-block h2 { font-size: 20px; }
    .rs-footer { height: 400px; }
    .rs-footer-content blockquote { font-size: 22px; }
}

@media (max-width: 480px) {
    .rs-hero-content h1 { font-size: 28px; }
    .rs-block { padding: 20px; }
}/* End custom CSS */