/* General Body and Base Styles */
.mavdorexilGlobalBodyElement {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #120014; /* Темний лавовий стиль. Фон чорний з фіолетово-рожевим підтоном */
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from overflow */
}

.mavdorexilMainCntntArea {
    padding-top: 80px; /* Space for fixed header */
}

h1, h2, h3 {
    color: #FF4FD8; /* Основні кнопки рожево-лавові, can be used for highlights */
    text-align: center;
    margin-bottom: 1.2em;
    line-height: 1.2;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }

p {
    margin-bottom: 1em;
}

a {
    color: #00ffe0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF4FD8;
    text-decoration: underline;
}

.hdrMvdRxLgCntnr,
.hrSctnMvdRxCntnr,
.pckgSctnMvdRxCntnr,
.frWhmSctnMvdRxCntnr,
.bnftsSctnMvdRxCntnr,
.tstmnlSctnMvdRxCntnr,
.fqSctnMvdRxCntnr,
.frmSctnMvdRxCntnr,
.xtrSctnOneCntnr,
.xtrSctnTwoCntnr,
.xtrSctnThrCntnr,
.ftrMvdRxCntnr {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Header Styles */
.hdrMvdRxLgCntnr {
    background-color: #1a001a; /* Slightly lighter background for header */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    max-width: none; /* Header should span full viewport width */
    margin: 0;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 79, 216, 0.3); /* Шапка з мʼякою лавовою підсвіткою */
    border-bottom: 1px solid rgba(255, 79, 216, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hdrMvdRxWrpprCnst {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hdrMvdRxNvgLg {
    font-size: 1.8em;
    font-weight: bold;
    color: #00ffe0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
}

/* Burger Menu for Mobile (CSS-only) */
.hdrMvdRxBgrCckbx {
    display: none; /* Hide the checkbox */
}

.hdrMvdRxBgrIcnLbl {
    display: none; /* Hide label by default */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other elements */
    position: relative;
}

.hdrMvdRxBgrSpn {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #00ffe0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hdrMvdRxMnLst {
    display: block; /* Default for desktop */
    margin-left: auto;
}

.hdrMvdRxMnLstItems {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.hdrMvdRxMnLstLnk {
    color: #e0e0e0;
    font-size: 1.1em;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.hdrMvdRxMnLstLnk:hover {
    background-color: rgba(255, 79, 216, 0.2);
    color: #FF4FD8;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(255, 79, 216, 0.5);
}

/* Hero Section */
.hrSctnMvdRxCntnr {
    padding: 80px 20px 60px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: left;
}

.hrSctnCntntRgn {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.hrSctnMgWrppr {
    flex: 1;
    min-width: 300px; /* Minimum width for image wrapper */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hrSctnMgWrppr::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #00ffe0;
    border-radius: 10px;
    animation: pulseBorder 3s infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulseBorder {
    0% { border-color: rgba(0, 255, 224, 0.5); box-shadow: 0 0 15px rgba(0, 255, 224, 0.3); }
    100% { border-color: rgba(255, 79, 216, 0.8); box-shadow: 0 0 25px rgba(255, 79, 216, 0.5); }
}

.hrSctnMgElmnt {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.4);
    position: relative;
    z-index: 1;
}

.hrSctnTxtRghtCll {
    flex: 2;
    min-width: 400px; /* Minimum width for text content */
    text-align: left;
    padding-left: 20px;
}

.hrSctnHdngPrmry {
    font-size: 3.5em;
    margin-top: 0;
    margin-bottom: 0.4em;
    color: #FF4FD8;
    text-align: left;
    text-shadow: 0 0 15px rgba(255, 79, 216, 0.5);
}

.hrSctnSbttlPrmry {
    font-size: 1.5em;
    color: #00ffe0;
    margin-bottom: 1.5em;
    font-weight: 300;
    text-align: left;
}

.hrSctnPrcpPrmry {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #d0d0d0;
}

.hrSctnBtnPrmry {
    display: inline-block;
    background-color: #FF4FD8;
    color: #120014;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 25px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.7); /* Primary button glow */
}

.hrSctnBtnPrmry:hover {
    background-color: #ff6cdc;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(255, 79, 216, 1), 0 0 40px rgba(255, 79, 216, 0.6); /* Pulsating glow */
}

/* Packages Section */
.pckgSctnMvdRxCntnr {
    padding: 80px 20px;
    text-align: center;
}

.pckgSctnHdng {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: #FF4FD8;
    text-shadow: 0 0 10px rgba(255, 79, 216, 0.4);
}

.pckgSctnSbtltl {
    font-size: 1.2em;
    color: #00ffe0;
    margin-bottom: 3em;
}

.pckgSctnCrdsWrppr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.pckgSctnCrdBx {
    background-color: #1a001a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 255, 224, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pckgSctnCrdBx:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 79, 216, 0.4);
    border-color: #FF4FD8;
}

.pckgSctnCrdTtl {
    color: #FF4FD8;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 0.8em;
    text-align: center;
}

.pckgSctnCrdPrc {
    font-size: 2.5em;
    font-weight: bold;
    color: #00ffe0;
    margin-bottom: 1.5em;
}

.pckgSctnCrdLst {
    list-style: none;
    padding: 0;
    margin: 0 0 2em 0;
    text-align: left;
    width: 100%;
    flex-grow: 1; /* Make list take available space */
}

.pckgSctnCrdItm {
    margin-bottom: 0.8em;
    font-size: 1em;
    color: #c0c0c0;
    position: relative;
    padding-left: 25px;
}

.pckgSctnCrdItm::before {
    content: '→'; /* light arrow */
    position: absolute;
    left: 0;
    color: #00ffe0;
    font-weight: bold;
    font-size: 1.2em;
}

.pckgSctnCrdBtn {
    display: inline-block;
    background-color: transparent;
    color: #FF4FD8;
    border: 2px solid #FF4FD8; /* Secondary button with lava frame */
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: auto; /* Push button to bottom */
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.4s ease;
}

.pckgSctnCrdBtn:hover {
    background-color: #FF4FD8;
    color: #120014;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.7);
}

/* For Whom Section */
.frWhmSctnMvdRxCntnr {
    padding: 80px 20px;
}

.frWhmSctnHdng {
    font-size: 2.5em;
    margin-bottom: 1.5em;
    color: #00ffe0;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.4);
}

.frWhmSctnCntntSplit {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap-reverse; /* Image below text on mobile */
}

.frWhmSctnLftCntnt {
    flex: 2;
    min-width: 300px;
}

.frWhmSctnIntroP {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 2em;
    text-align: left;
}

.frWhmSctnTxLst {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frWhmSctnTxLstItm {
    margin-bottom: 1.5em;
    font-size: 1.1em;
    color: #c0c0c0;
    position: relative;
    padding-left: 35px;
}

.frWhmSctnTxLstItm::before {
    content: '⚡'; /* Energetic accent */
    position: absolute;
    left: 0;
    color: #FF4FD8;
    font-size: 1.3em;
    top: -3px;
}

.frWhmSctnTxLstTtl {
    font-weight: bold;
    color: #FF4FD8;
}

.frWhmSctnImgCnntr {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.frWhmSctnImgCnntr::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px dashed rgba(255, 79, 216, 0.6); /* Lava crack like decor */
    border-radius: 8px;
    pointer-events: none;
}

.frWhmSctnMgSbrd {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.3);
}

/* Benefits Section */
.bnftsSctnMvdRxCntnr {
    padding: 80px 20px;
    text-align: center;
}

.bnftsSctnHdng {
    font-size: 2.5em;
    margin-bottom: 1.5em;
    color: #FF4FD8;
    text-shadow: 0 0 10px rgba(255, 79, 216, 0.4);
}

.bnftsSctnGridCtnr {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap; /* Image first on mobile */
}

.bnftsSctnMgLft {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bnftsSctnMgLft::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px double rgba(0, 255, 224, 0.6); /* Another decorative border */
    border-radius: 15px;
    pointer-events: none;
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bnftsSctnMgElmnt {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.4);
}

.bnftsSctnTxtRght {
    flex: 2;
    min-width: 300px;
    text-align: left;
}

.bnftsSctnMdCntnt {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 2em;
}

.bnftsSctnMdLst {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bnftsSctnMdLstItm {
    margin-bottom: 1.2em;
    font-size: 1.1em;
    color: #c0c0c0;
    position: relative;
    padding-left: 30px;
}

.bnftsSctnMdLstItm::before {
    content: '🔥'; /* Lava effect, energetic accent */
    position: absolute;
    left: 0;
    color: #FF4FD8;
    font-size: 1.2em;
    top: -2px;
}

.bnftsSctnMdLstTtl {
    font-weight: bold;
    color: #00ffe0;
}

/* Testimonial Section */
.tstmnlSctnMvdRxCntnr {
    padding: 80px 20px;
    text-align: center;
}

.tstmnlSctnHdng {
    font-size: 2.5em;
    margin-bottom: 2em;
    color: #00ffe0;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.4);
}

.tstmnlSctnQutBlck {
    background-color: #1a001a;
    border: 2px solid rgba(255, 79, 216, 0.5);
    border-left: 8px solid #FF4FD8; /* Decorative "lava" border */
    border-radius: 8px;
    padding: 40px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 0 25px rgba(255, 79, 216, 0.3);
    position: relative;
}

.tstmnlSctnQutBlck::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 8em;
    color: rgba(0, 255, 224, 0.2);
    line-height: 1;
    z-index: 0;
}

.tstmnlSctnQutBlck::after {
    content: '”';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 8em;
    color: rgba(0, 255, 224, 0.2);
    line-height: 1;
    z-index: 0;
}

.tstmnlSctnQutTxt {
    font-size: 1.4em;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1.5em;
    position: relative;
    z-index: 1;
}

.tstmnlSctnQutNme {
    font-size: 1.1em;
    font-weight: bold;
    color: #00ffe0;
    text-align: right;
    display: block;
    margin-top: 1em;
    position: relative;
    z-index: 1;
}

/* Additional Text Sections */
.xtrSctnOneCntnr,
.xtrSctnTwoCntnr,
.xtrSctnThrCntnr {
    padding: 80px 20px;
    border-top: 1px dashed rgba(255, 79, 216, 0.2); /* Subtle lava crack divisor */
    margin-bottom: 40px;
}

.xtrSctnOneCntnr { background-color: rgba(26, 0, 26, 0.6); }
.xtrSctnTwoCntnr { background-color: rgba(18, 0, 20, 0.7); }
.xtrSctnThrCntnr { background-color: rgba(26, 0, 26, 0.6); }


.xtrSctnHdngLrg {
    font-size: 2.2em;
    margin-bottom: 1.2em;
    color: #FF4FD8;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 79, 216, 0.3);
}

.xtrSctnPrgrphLrg {
    font-size: 1.1em;
    color: #d0d0d0;
    text-align: justify;
    margin-bottom: 1.5em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.fqSctnMvdRxCntnr {
    padding: 80px 20px;
    text-align: center;
}

.fqSctnHdng {
    font-size: 2.5em;
    margin-bottom: 2em;
    color: #FF4FD8;
    text-shadow: 0 0 10px rgba(255, 79, 216, 0.4);
}

.fqSctnItmsWrppr {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.fqSctnDtlsCntnr {
    background-color: #1a001a;
    border: 1px solid rgba(0, 255, 224, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 255, 224, 0.15);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.fqSctnDtlsCntnr[open] {
    background-color: #260a26;
    border-color: #FF4FD8;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.25);
}

.fqSctnSmmryPrmry {
    font-size: 1.3em;
    font-weight: bold;
    color: #00ffe0;
    padding: 20px 25px;
    cursor: pointer;
    outline: none;
    position: relative;
    list-style: none; /* Hide default arrow */
    transition: color 0.3s ease;
}

.fqSctnSmmryPrmry::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.fqSctnSmmryPrmry::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5em;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #FF4FD8;
}

.fqSctnDtlsCntnr[open] .fqSctnSmmryPrmry::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.fqSctnSmmryPrmry:hover {
    color: #FF4FD8;
}

.fqSctnNswrP {
    font-size: 1.1em;
    color: #c0c0c0;
    padding: 0 25px 20px 25px;
    margin: 0;
}

/* Form Section */
.frmSctnMvdRxCntnr {
    padding: 80px 20px;
    text-align: center;
}

.frmSctnHdng {
    font-size: 2.5em;
    margin-bottom: 0.8em;
    color: #FF4FD8;
    text-shadow: 0 0 10px rgba(255, 79, 216, 0.4);
}

.frmSctnSbttl {
    font-size: 1.2em;
    color: #00ffe0;
    margin-bottom: 2em;
}

.frmSctnCntntFrm {
    background-color: #1a001a;
    border: 1px solid rgba(0, 255, 224, 0.3);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.frmSctnCntntFrm::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(255, 79, 216, 0.6);
    border-radius: 15px;
    pointer-events: none;
}

.frmSctnFldGrp {
    text-align: left;
}

.frmSctnLblPrmry {
    display: block;
    font-size: 1.1em;
    color: #00ffe0;
    margin-bottom: 8px;
    font-weight: bold;
}

.frmSctnInptPrmry,
.frmSctnTxtrPrmry {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #FF4FD8; /* Lava frame input */
    border-radius: 8px;
    background-color: #0a000a;
    color: #e0e0e0;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.frmSctnInptPrmry:focus,
.frmSctnTxtrPrmry:focus {
    outline: none;
    border-color: #00ffe0;
    box-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
}

.frmSctnTxtrPrmry {
    resize: vertical;
    min-height: 100px;
}

.frmSctnChckbxWrppr {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    text-align: left;
}

.frmSctnChckbxInpt {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #00ffe0;
    border-radius: 4px;
    background-color: #0a000a;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.frmSctnChckbxInpt:checked {
    background-color: #FF4FD8;
    border-color: #FF4FD8;
}

.frmSctnChckbxInpt:checked::before {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #120014;
    font-size: 1.2em;
}

.frmSctnChckbxLbl {
    font-size: 0.95em;
    color: #c0c0c0;
    cursor: pointer;
}

.frmSctnLnkPrmry {
    color: #00ffe0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.frmSctnLnkPrmry:hover {
    color: #FF4FD8;
}

.frmSctnBtnSbmt {
    background-color: #FF4FD8;
    color: #120014;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.7); /* Primary button glow */
}

.frmSctnBtnSbmt:hover {
    background-color: #ff6cdc;
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 79, 216, 1), 0 0 40px rgba(255, 79, 216, 0.6); /* Pulsating glow */
}

/* Footer Styles */
.ftrMvdRxCntnr {
    background-color: #1a001a;
    padding: 40px 20px;
    text-align: center;
    color: #c0c0c0;
    border-top: 1px solid rgba(0, 255, 224, 0.3);
    box-shadow: 0 -2px 10px rgba(0, 255, 224, 0.3);
}

.ftrMvdRxWrppr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ftrMvdRxCprght {
    font-size: 1em;
    margin: 0;
    color: #e0e0e0;
}

.ftrMvdRxCntct {
    font-size: 0.95em;
    margin: 0;
    color: #c0c0c0;
}

.ftrMvdRxLnkEmail,
.ftrMvdRxLnkPhone {
    color: #00ffe0;
    margin-left: 10px;
    white-space: nowrap; /* Prevent phone number from breaking */
}

.ftrMvdRxLnkEmail:hover,
.ftrMvdRxLnkPhone:hover {
    color: #FF4FD8;
    text-decoration: underline;
}

.ftrMvdRxLgLnk {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

.ftrMvdRxLnkPrmry {
    font-size: 0.9em;
    color: #00ffe0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.ftrMvdRxLnkPrmry:hover {
    color: #FF4FD8;
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.6em; }

    /* Hero */
    .hrSctnHdngPrmry { font-size: 3em; }
    .hrSctnSbttlPrmry { font-size: 1.3em; }
    .hrSctnTxtRghtCll { padding-left: 0; }
    .hrSctnCntntRgn { flex-direction: column; text-align: center; }
    .hrSctnMgWrppr, .hrSctnTxtRghtCll { min-width: unset; width: 100%; }
    .hrSctnHdngPrmry, .hrSctnSbttlPrmry { text-align: center; }

    /* Packages */
    .pckgSctnCrdsWrppr { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

    /* For Whom & Benefits */
    .frWhmSctnCntntSplit, .bnftsSctnGridCtnr { flex-direction: column; text-align: center; }
    .frWhmSctnImgCnntr, .frWhmSctnLftCntnt, .bnftsSctnMgLft, .bnftsSctnTxtRght { min-width: unset; width: 100%; }
    .frWhmSctnHdng, .bnftsSctnHdng { text-align: center; }
    .frWhmSctnIntroP, .bnftsSctnMdCntnt { text-align: center; }
    .frWhmSctnTxLst, .bnftsSctnMdLst { text-align: left; /* Keep lists left-aligned for readability */ }

    /* Testimonial */
    .tstmnlSctnQutTxt { font-size: 1.2em; }
}

@media (max-width: 768px) {
    /* Header */
    .hdrMvdRxBgrIcnLbl { display: flex; }
    .hdrMvdRxMnLst {
        position: absolute;
        top: 100%; /* Below the header */
        left: 0;
        width: 100%;
        background-color: #1a001a;
        box-shadow: 0 5px 15px rgba(255, 79, 216, 0.4);
        border-bottom: 1px solid rgba(255, 79, 216, 0.6);
        transform: translateY(-100vh); /* Off-screen by default */
        transition: transform 0.4s ease-in-out;
        opacity: 0;
        pointer-events: none;
        max-height: calc(100vh - 80px); /* Limit height */
        overflow-y: auto;
    }

    .hdrMvdRxBgrCckbx:checked ~ .hdrMvdRxMnLst {
        transform: translateY(0); /* Slide in */
        opacity: 1;
        pointer-events: auto;
    }

    .hdrMvdRxMnLstItems {
        flex-direction: column;
        padding: 20px 0;
    }

    .hdrMvdRxMnLstLnk {
        display: block;
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 255, 224, 0.1);
    }
    .hdrMvdRxMnLstLnk:last-child {
        border-bottom: none;
    }

    /* Burger icon animation */
    .hdrMvdRxBgrCckbx:checked + .hdrMvdRxBgrIcnLbl .hdrMvdRxBgrSpnOne {
        transform: translateY(11px) rotate(45deg);
    }
    .hdrMvdRxBgrCckbx:checked + .hdrMvdRxBgrIcnLbl .hdrMvdRxBgrSpnTwo {
        opacity: 0;
    }
    .hdrMvdRxBgrCckbx:checked + .hdrMvdRxBgrIcnLbl .hdrMvdRxBgrSpnThree {
        transform: translateY(-11px) rotate(-45deg);
    }

    /* General */
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.4em; }

    .hrSctnHdngPrmry { font-size: 2.8em; }
    .hrSctnSbttlPrmry { font-size: 1.1em; }
    .hrSctnBtnPrmry { padding: 12px 25px; font-size: 1.1em; }

    .pckgSctnCrdBx { padding: 25px; }
    .pckgSctnCrdTtl { font-size: 1.6em; }
    .pckgSctnCrdPrc { font-size: 2em; }
    .pckgSctnCrdItm { font-size: 0.95em; }

    .frWhmSctnTxLstItm, .bnftsSctnMdLstItm { font-size: 1em; }

    .tstmnlSctnQutBlck { padding: 30px; }
    .tstmnlSctnQutTxt { font-size: 1.1em; }

    .fqSctnSmmryPrmry { font-size: 1.1em; padding: 15px 20px; }
    .fqSctnSmmryPrmry::after { right: 20px; }
    .fqSctnNswrP { font-size: 1em; padding: 0 20px 15px 20px; }

    .frmSctnCntntFrm { padding: 30px; }
    .frmSctnLblPrmry { font-size: 1em; }
    .frmSctnInptPrmry, .frmSctnTxtrPrmry { padding: 10px 12px; font-size: 0.95em; }
    .frmSctnBtnSbmt { padding: 12px 25px; font-size: 1.1em; }

    .ftrMvdRxLgLnk { flex-direction: column; gap: 10px; }
    .ftrMvdRxLnkEmail, .ftrMvdRxLnkPhone { margin-left: 0; display: block; }
}

@media (max-width: 480px) {
    .hdrMvdRxNvgLg { font-size: 1.5em; }
    .hdrMvdRxLgCntnr { padding: 10px 15px; }
    .mavdorexilMainCntntArea { padding-top: 65px; } /* Adjust for smaller header */

    h1 { font-size: 1.8em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.2em; }

    .hrSctnHdngPrmry { font-size: 2em; }
    .hrSctnSbttlPrmry { font-size: 1em; }
    .hrSctnPrcpPrmry { font-size: 0.95em; }
    .hrSctnBtnPrmry { font-size: 1em; padding: 10px 20px; }

    .pckgSctnCrdTtl { font-size: 1.4em; }
    .pckgSctnCrdPrc { font-size: 1.8em; }
    .pckgSctnCrdItm { font-size: 0.9em; }
    .pckgSctnCrdBtn { font-size: 1em; padding: 10px 20px; }

    .frWhmSctnTxLstItm, .bnftsSctnMdLstItm { font-size: 0.95em; padding-left: 25px; }
    .frWhmSctnTxLstItm::before, .bnftsSctnMdLstItm::before { font-size: 1em; top: 0; }
    .frWhmSctnIntroP, .bnftsSctnMdCntnt { font-size: 1em; }

    .tstmnlSctnQutBlck { padding: 25px; border-left: 6px solid #FF4FD8; }
    .tstmnlSctnQutTxt { font-size: 1em; }
    .tstmnlSctnQutNme { font-size: 0.9em; }

    .fqSctnSmmryPrmry { font-size: 1em; padding: 12px 15px; }
    .fqSctnSmmryPrmry::after { right: 15px; font-size: 1.2em; }
    .fqSctnNswrP { font-size: 0.95em; padding: 0 15px 12px 15px; }

    .frmSctnCntntFrm { padding: 25px; }
    .frmSctnLblPrmry { font-size: 0.9em; }
    .frmSctnInptPrmry, .frmSctnTxtrPrmry { padding: 8px 10px; font-size: 0.9em; }
    .frmSctnChckbxLbl { font-size: 0.85em; }
    .frmSctnBtnSbmt { font-size: 1em; padding: 10px 20px; }

    .ftrMvdRxCntct { font-size: 0.85em; }
    .ftrMvdRxLnkPrmry { font-size: 0.8em; }

    .hdrMvdRxBgrIcnLbl { height: 20px; width: 25px; }
    .hdrMvdRxBgrSpn { height: 2px; }
    .hdrMvdRxBgrCckbx:checked + .hdrMvdRxBgrIcnLbl .hdrMvdRxBgrSpnOne { transform: translateY(9px) rotate(45deg); }
    .hdrMvdRxBgrCckbx:checked + .hdrMvdRxBgrIcnLbl .hdrMvdRxBgrSpnThree { transform: translateY(-9px) rotate(-45deg); }
}
