
        :root {
            --rethios-blue: #0C3C60;
            --rethios-orange: #F58144;
            --rethios-grey: #555;
        }

* {
    box-sizing: border-box; /* Ensures padding stays INSIDE the width */
	margin: 0;
    padding: 0;
}

        /* 1. LIGHT GREY VIDEO BACKGROUND */
#video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* bring it above the page background */
}

#video-bg-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#video-bg-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240, 0.75);
    z-index: 1;
}

        #test1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: blur(1px);
        }

        html,body {
		    width: 100%;
			margin: 0;
			padding: 0;
            font-family: 'Inter', sans-serif;
            background-color: #f4f4f4;
            display: flex;
            flex-direction: column;
			overflow-x: hidden; /* Prevents any horizontal "jiggle" */
        }

        /* 2. HEADER */
#header_style {
    width:100vw;
	min-height: 90px;
    background-color: var(--rethios-blue);
    color: white;
    display: flex;
    justify-content: center; /* Centers the inner wrapper */
    padding: 0 15px;
	box-sizing: border-box; /* Ensures padding doesn't add to the 100vw */
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	overflow-wrap: break-word; /* Safety for very long words */
}

.header-content {
    width: 100%;
    /* No max-width here so the logo stays at the far left of the screen */
    background-color: var(--rethios-blue);
	display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Force the logo to stay on the left */
.header-left {
    flex: 1; /* Takes up space on the left */
    display: flex;
    align-items: center;
}

#rethios_logo {
    height: 60px;
    width: auto;
}
 
/* Centers the title */
.header-center {
    flex: 2; /* Takes up more space to keep text from wrapping too soon */
    text-align: center;
}

#header_title {
    font-size: 2rem;
    margin: 0;
    white-space: normal; /* Changed from nowrap */
    overflow-wrap: break-word; /* Safety for very long words */
}

/* Balances the right side so the center stays centered */
.header-right {
    flex: 1; 
    text-align: right;
    font-size: 0.8rem;
    opacity: 0.7;
}




        /* 3. FIXED SIDE MENU (90px) */
        #main_menu {
            position: fixed;
            left: 0;
            top: 120px;
            z-index: 1000;
        }
        .icon-bar {
            display: flex;
            flex-direction: column;
            width: 90px;
            background-color: var(--rethios-grey);
            border-radius: 0 8px 8px 0;
        }
        .nav-item {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            height: 85px;
            position: relative;
            transition: background 0.3s;
        }
        .nav-item i { width: 90px; text-align: center; font-size: 36px !important; z-index: 2; background-color: inherit; }
        .nav-text {
            position: absolute;
            left: 90px;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 30px;
            background-color: #000;
            color: var(--rethios-orange);
            font-size: 18px;
            font-weight: bold;
            border-radius: 0 5px 5px 0;
            white-space: nowrap;
            z-index: 1;
            visibility: hidden;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .nav-item:hover { background-color: #000; }
        .nav-item:hover .nav-text { visibility: visible; opacity: 1; transform: translateX(0px); }
        .nav-item.active { background-color: var(--rethios-orange); }

        /* 4. CENTERED MAIN CONTAINER */
		.main-container {
			margin-left: auto;
			margin-right: auto;
			width: 100%;
			max-width: 1100px; /* Limits the width on ultra-wide screens */
			min-width:auto;
			padding: 60px 25px; /* 25px is your safety gutter from the right/left borders */
			z-index: 1;
			transition: transform 0.3s ease;
		}

        /* 5. CONTENT CARDS */
        .hero-section {
            text-align: center;
            margin-bottom: 60px;
        }
        .hero-section h1 {
            font-size: 3rem;
            color: var(--rethios-blue);
            margin-bottom: 10px;
        }
        .hero-section p {
            font-size: 1.4rem;
            color: var(--rethios-grey);
            font-weight: 300;
        }

        .card {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            padding: clamp(15px, 5vw, 40px);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            border-top: 5px solid var(--rethios-orange);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-box {
            text-align: left;
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--rethios-blue);
            margin-bottom: 20px;
        }
        .feature-box h3 {
            color: var(--rethios-blue);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--rethios-blue);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
            margin-top: 20px;
        }
        .cta-button:hover {
            background-color: var(--rethios-orange);
            transform: translateY(-3px);
        }

        footer { text-align: center; padding: 40px; color: var(--rethios-grey); font-size: 0.9rem; }

    .simulation-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
        min-height: 400px;
    }

    .process-loop {
        position: relative;
        width: 300px;
        height: 300px;
        border: 2px dashed #ddd;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .step-item {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Circular math to place 7 items around the ring */
        transform: rotate(calc(360deg / 7 * var(--i))) translateY(-150px) rotate(calc(-360deg / 7 * var(--i)));
    }

    .step-icon {
        width: 60px;
        height: 60px;
        background: white;
        border: 2px solid var(--rethios-orange);
        color: var(--rethios-blue);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

    .step-icon .material-symbols-outlined {
        font-size: 30px !important;
    }

    .step-label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 8px;
        color: var(--rethios-blue);
        background: rgba(255,255,255,0.8);
        padding: 2px 6px;
        border-radius: 4px;
    }

    .step-item:hover .step-icon {
        background: var(--rethios-orange);
        color: white;
        transform: scale(1.1);
    }

    .center-core {
        width: 100px;
        height: 100px;
        background: var(--rethios-blue);
        color: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0 0 20px rgba(12, 60, 96, 0.4);
    }

    .center-core .material-symbols-outlined {
        font-size: 40px !important;
        animation: spin 8s linear infinite;
    }

    .center-core small {
        font-size: 9px;
        font-weight: bold;
        margin-top: 5px;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

/* Mobile Toggle Button - Hidden by default */
#menu-toggle {
    display: none;
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 2000;
    background: var(--rethios-orange);
    color: white;
    border: none;
    
    /* 1. Increase padding for a larger button footprint */
    padding: 15px 20px; 
    
    /* 2. Increase font-size to make the 'bars' icon bigger */
    font-size: 1.5rem; 
    
    /* 3. Optional: Adjust border-radius to keep it looking sharp */
    border-radius: 8px; 
    
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    
    /* 4. Smooth transition for hover effects */
    transition: transform 0.2s ease, background 0.2s ease;
}

/* Optional: Add a hover effect so it feels interactive when larger */
#menu-toggle:hover {
    background: var(--rethios-blue);
    transform: scale(1.1);
}



        .pitfall-box { background: #fff5f0; border-left: 5px solid #ff4d4d; padding: 20px; border-radius: 8px; margin-bottom: 20px; }
        .reference-list { list-style: none; padding: 0; border-top: 1px solid #eee; margin-top: 40px; padding-top: 20px; }
        .reference-list li { font-size: 0.9rem; margin-bottom: 15px; color: var(--rethios-grey); }
		        /* McDonald KAM Specific Styles */
        .phase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; }
        .phase-card { border: 1px solid #eee; padding: 25px; border-radius: 12px; transition: 0.3s; background: white; }
        .phase-card:hover { border-color: var(--rethios-orange); transform: translateY(-5px); }
        .phase-num { font-size: 0.8rem; font-weight: 800; color: var(--rethios-orange); text-transform: uppercase; }
        .phase-title { color: var(--rethios-blue); font-size: 1.25rem; margin: 10px 0; font-weight: 700; }
        
        .mcdonald-matrix { width: 100%; border-collapse: collapse; margin: 20px 0; }
        .mcdonald-matrix td { border: 2px solid #fff; padding: 20px; text-align: center; color: white; font-weight: 600; width: 50%; }
        .matrix-blue { background: #0C3C60; }
        .matrix-orange { background: #F58144; }
		
		 .method-box { background: #fff; border-radius: 12px; padding: 25px; border-left: 5px solid var(--rethios-blue); height: 100%; }
        .step-tag { background: var(--rethios-blue); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }
 
         .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .feature-item { border-bottom: 1px solid #eee; padding-bottom: 20px; }
        .feature-item h4 { color: var(--rethios-blue); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        
        /* Access Level Table */
        .access-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.9rem; table-layout: fixed;  word-wrap: break-word;  }
        .access-table th { text-align: left; padding: 12px; background: var(--rethios-blue); color: white; }
        .access-table td { padding: 12px; border-bottom: 1px solid #eee; }
		
		
		    .sme-case-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .benefit-card {
        background: white;
        padding: 25px;
        border-radius: 12px;
        border-left: 5px solid var(--rethios-orange);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-card h4 {
        color: var(--rethios-blue);
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .advantage-badge {
        display: inline-block;
        background: var(--rethios-blue);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 40px;
        background: white;
        border-radius: 10px;
        overflow: hidden;
		table-layout: fixed; /* forces cells to shrink instead of expanding */ 
		word-wrap: break-word; /* allows long text to wrap */
    }

    .comparison-table th {
        background: var(--rethios-blue);
        color: white;
        padding: 15px;
        text-align: left;
    }

    .comparison-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        color: var(--rethios-grey);
    }
	
	    .simulation-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: padding: clamp(20px, 5vw, 40px);
        min-height: 400px;
    }

    .process-loop {
        position: relative;
        width: 300px;
        height: 300px;
        border: 2px dashed #ddd;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .step-item {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Circular math to place 7 items around the ring */
        transform: rotate(calc(360deg / 7 * var(--i))) translateY(-150px) rotate(calc(-360deg / 7 * var(--i)));
    }

    .step-icon {
        width: 60px;
        height: 60px;
        background: white;
        border: 2px solid var(--rethios-orange);
        color: var(--rethios-blue);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

    .step-icon .material-symbols-outlined {
        font-size: 30px !important;
    }

    .step-label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 8px;
        color: var(--rethios-blue);
        background: rgba(255,255,255,0.8);
        padding: 2px 6px;
        border-radius: 4px;
    }

    .step-item:hover .step-icon {
        background: var(--rethios-orange);
        color: white;
        transform: scale(1.1);
    }

    .center-core {
        width: 100px;
        height: 100px;
        background: var(--rethios-blue);
        color: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0 0 20px rgba(12, 60, 96, 0.4);
    }

    .center-core .material-symbols-outlined {
        font-size: 40px !important;
        animation: spin 8s linear infinite;
    }

    .center-core small {
        font-size: 9px;
        font-weight: bold;
        margin-top: 5px;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
	
	
	.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.form-group.full-width {
    grid-column: span 2;
}

.form-group.full-width[style*="text-align: center"] {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre le bouton horizontalement */
    justify-content: center;
    grid-column: span 2; /* S'assure qu'il occupe toute la largeur sur desktop */
}

.cta-button {
    display: inline-block;
    margin: 0 auto; /* Sécurité supplémentaire pour le centrage */
}


.form-control {
    padding: clamp(8px, 2vw, 12px) clamp(10px, 3vw, 15px);
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
	width: 100%; 
	box-sizing: border-box; /* THIS is the key */
}
.form-control:focus {
    outline: none;
    border-color: var(--rethios-orange);
}
.chapka-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
	min-width: 0; /* allows shrinking on small screens */
}



    .distorted-captcha {
        background: repeating-linear-gradient(
            45deg,
            var(--rethios-blue),
            var(--rethios-blue) 10px,
            #165a8d 10px,
            #165a8d 11px
        );
        color: rgba(255, 255, 255, 0.9);
        padding: 10px 15px;
        border-radius: 4px;
        font-weight: 900;
        letter-spacing: 5px;
        font-family: 'Courier New', monospace;
        position: relative;
        user-select: none;
        overflow: hidden;
        text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
    }

    /* Adds a "noise" / scratch effect over the text */
    .distorted-captcha::after {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.15;
        pointer-events: none;
    }

    .captcha-text {
        display: inline-block;
        transform: skew(-10deg) rotate(-2deg);
        filter: blur(0.4px);
    }
	/* Container for the specific combinations section */
.combo-engine-section {
    background: #fdfdfd;
    border-top: 5px solid var(--rethios-orange) !important;
}

/* Container for the specific combinations section */
.combo-engine-section {
    background: #fdfdfd;
    border-top: 5px solid var(--rethios-orange) !important;
}

.combo-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Lowered from 320px */
    gap: 20px; /* Slightly reduced gap to save horizontal space */
    margin-top: 20px;
}

.combo-card {
    background: white; 
    border: 1px solid #eee; 
    border-radius: 15px; 
    padding: 35px 25px 25px 25px; /* Added more top padding for the badge */
    position: relative; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.combo-card.featured {
    border: 2px solid var(--rethios-blue);
}

/* The Fixed Badge CSS */
.combo-badge {
    position: absolute; 
    top: -14px; /* Move it up to sit ON the border */
    left: 20px; 
    background: var(--rethios-blue); 
    color: white; 
    padding: 4px 15px; 
    border-radius: 20px; 
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10; /* Ensure it is above the card border */
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.workflow-row {
    display: flex; 
    align-items: center; 
    gap: 8px; 
    margin-top: 20px;
    flex-wrap: wrap;
}

.workflow-step {
    width: 42px; 
    height: 42px; 
    border: 2px solid var(--rethios-orange);
    color: var(--rethios-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

        .card1 { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 40px; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); margin-bottom: 40px; border-top: 5px solid var(--rethios-blue); }

        .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .feature-item { border-bottom: 1px solid #eee; padding-bottom: 20px; }
        .feature-item h4 { color: var(--rethios-blue); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        
        /* Access Level Table */
        .access-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.9rem; }
        .access-table th { text-align: left; padding: 12px; background: var(--rethios-blue); color: white; }
        .access-table td { padding: 12px; border-bottom: 1px solid #eee; }
		
		
    .sme-case-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .benefit-card {
        background: white;
        padding: 25px;
        border-radius: 12px;
        border-left: 5px solid var(--rethios-orange);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-card h4 {
        color: var(--rethios-blue);
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .advantage-badge {
        display: inline-block;
        background: var(--rethios-blue);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 40px;
        background: white;
        border-radius: 10px;
        overflow: hidden;
    }

    .comparison-table th {
        background: var(--rethios-blue);
        color: white;
        padding: 15px;
        text-align: left;
    }

    .comparison-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        color: var(--rethios-grey);
    }		
	
	    .method-box { background: #fff; border-radius: 12px; padding: 25px; border-left: 5px solid var(--rethios-blue); height: 100%; }
        .step-tag { background: var(--rethios-blue); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }


/* RESPONSIVE FIX: Only shift the container if the screen is wide enough for the sidebar */
/* --------------------------------------------- */
/*  DESKTOP (≥1024px)                            */
/* --------------------------------------------- */
@media (min-width: 1024px) {
    .main-container {
        transform: translateX(45px); /* Slight shift for sidebar */
    }
}

/* --------------------------------------------- */
/*  TABLETS & MOBILE (≤1023px)                   */
/* --------------------------------------------- */
@media (max-width: 1023px) {

    /* Main container resets */
    .main-container {
        width: 100%;
        max-width: 100%;
        padding: clamp(15px, 5vw, 40px) clamp(10px, 3vw, 20px);
        transform: none;
        margin: 0;
        box-sizing: border-box;
    }

    /* Mobile menu toggle */
    #menu-toggle {
        display: block;
    }

    /* Sidebar behavior */
    #main_menu {
        left: -100px;
        transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

        /* Scrollable sidebar */
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        scrollbar-width: none; /* Firefox */
    }

    #main_menu.open {
        left: 0;
    }

    /* Avoid overlap with toggle button */
    #main_menu .icon-bar {
        margin-top: 60px;
    }
}

/* --------------------------------------------- */
/*  SMALL TABLETS & LARGE PHONES (≤768px)        */
/* --------------------------------------------- */
@media (max-width: 768px) {
    #header_title {
        font-size: 1.2rem;
        white-space: normal;
    }

    .header-right {
        display: none;
    }
}

/* --------------------------------------------- */
/*  SMALL PHONES (≤600px)                        */
/* --------------------------------------------- */
@media (max-width: 600px) {
    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
	/* FIX FOR ANDROID OVERFLOW */
    .chapka-box {
        flex-direction: column; /* Stack elements vertically */
        align-items: stretch !important; /* Make input fill width */
        gap: 10px !important;
    }

    .distorted-captcha {
        align-self: center; /* Keep the code centered */
        width: 100%;
        text-align: center;
    }

    /* Ensure the "Refresh" and "Robot" icons don't break the layout */
    .chapka-box > div {
        width: 100%;
    }
}

/* --------------------------------------------- */
/*  VERY SMALL PHONES (≤360px)                   */
/* --------------------------------------------- */
@media (max-width: 360px) {
    .hero-section h1 {
        font-size: 1.8rem !important;
    }


    #header_title {
	font-size: 1rem;}
		
	.comparison-table { display: block; overflow-x: auto; white-space: nowrap; }	
	.access-table { display: block; overflow-x: auto; white-space: nowrap; }		
		
    
}

/* --------------------------------------------- */
/*  ULTRA SMALL PHONES (≤320px)                  */
/* --------------------------------------------- */
@media (max-width: 320px) {
    .main-container {
        padding: 40px 10px;
    }

    .hero-section h1 {
        font-size: 2rem !important;
    }
}
