<style>
/* =========================================
   SENDEASY — FINAL CTA / SPECIAL TRANSPORT
   ========================================= */

.se-special-final{
    --navy:#10233f;
    --blue:#2368a2;
    --orange:#f5a300;

    max-width:1200px;
    margin:0 auto 70px;
    padding:0 20px;
    box-sizing:border-box;
}

.se-special-final *,
.se-special-final *::before,
.se-special-final *::after{
    box-sizing:border-box;
}

.se-special-final-box{
    position:relative;
    overflow:hidden;

    padding:68px 65px;

    background:#10233f;
    border-radius:24px;
}

/* subtle decoration */

.se-special-final-box::before{
    content:"";
    position:absolute;

    width:330px;
    height:330px;

    right:-120px;
    top:-170px;

    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
}

.se-special-final-box::after{
    content:"";
    position:absolute;

    width:210px;
    height:210px;

    right:35px;
    bottom:-150px;

    border:1px solid rgba(255,255,255,.06);
    border-radius:50%;
}

.se-special-final-inner{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr auto;
    gap:55px;
    align-items:center;
}

/* TEXT */

.se-special-final-content{
    max-width:720px;
}

.se-special-final-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:15px;

    color:#a9c9e8;

    font-size:13px;
    line-height:1.3;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.se-special-final-eyebrow::before{
    content:"";

    width:28px;
    height:3px;

    background:var(--orange);
    border-radius:20px;
}

.se-special-final h2{
    margin:0 0 17px !important;
    padding:0 !important;

    color:#ffffff !important;

    font-size:clamp(32px,4vw,46px) !important;
    line-height:1.12 !important;
    letter-spacing:-1px !important;
    font-weight:800 !important;
}

.se-special-final p{
    max-width:680px;

    margin:0 !important;
    padding:0 !important;

    color:#d4deea !important;

    font-size:16px !important;
    line-height:1.75 !important;
}

/* BUTTON */

.se-special-final .se-special-final-btn,
.se-special-final .se-special-final-btn:link,
.se-special-final .se-special-final-btn:visited{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;

    min-width:210px !important;
    min-height:55px !important;

    padding:15px 25px !important;

    background:#ffffff !important;
    color:#10233f !important;

    border:2px solid #ffffff !important;
    border-radius:10px !important;

    text-decoration:none !important;

    font-size:15px !important;
    line-height:1.2 !important;
    font-weight:800 !important;

    white-space:nowrap;

    box-shadow:0 10px 28px rgba(0,0,0,.12);

    transition:.2s ease;
}

.se-special-final .se-special-final-btn:hover{
    background:var(--orange) !important;
    border-color:var(--orange) !important;
    color:#10233f !important;

    transform:translateY(-2px);
}

.se-special-final-arrow{
    font-size:19px;
    line-height:1;
}

/* SMALL TRUST LINE */

.se-special-final-trust{
    display:flex;
    flex-wrap:wrap;
    gap:8px 22px;

    margin-top:22px;
}

.se-special-final-trust span{
    display:flex;
    align-items:center;
    gap:7px;

    color:#b9c9d9;

    font-size:13px;
    font-weight:600;
}

.se-special-final-trust span::before{
    content:"✓";

    color:#67d39a;
    font-weight:900;
}

/* TABLET */

@media(max-width:850px){

    .se-special-final-box{
        padding:55px 40px;
    }

    .se-special-final-inner{
        grid-template-columns:1fr;
        gap:30px;
    }

    .se-special-final-btn{
        width:max-content;
    }
}

/* MOBILE */

@media(max-width:600px){

    .se-special-final{
        padding:0 14px;
        margin-bottom:50px;
    }

    .se-special-final-box{
        padding:42px 24px;
        border-radius:18px;
    }

    .se-special-final h2{
        font-size:34px !important;
    }

    .se-special-final p{
        font-size:15px !important;
        line-height:1.7 !important;
    }

    .se-special-final-trust{
        display:grid;
        gap:8px;
    }

    .se-special-final .se-special-final-btn,
    .se-special-final .se-special-final-btn:link,
    .se-special-final .se-special-final-btn:visited{
        width:100% !important;
    }
}

<style>
/* =========================================
   SENDEASY — ΚΟΣΤΟΣ ΕΙΔΙΚΗΣ ΜΕΤΑΦΟΡΑΣ
   ========================================= */

.se-special-cost{
    --navy:#10233f;
    --blue:#2368a2;
    --orange:#f5a300;
    --text:#536175;
    --border:#e5ebf1;
    --soft:#f7f9fb;

    max-width:1200px;
    margin:0 auto 85px;
    padding:75px 55px;
    background:var(--soft);
    border-radius:24px;
    box-sizing:border-box;
}

.se-special-cost *,
.se-special-cost *::before,
.se-special-cost *::after{
    box-sizing:border-box;
}

/* HEADER */

.se-special-cost-head{
    max-width:790px;
    margin:0 0 45px;
}

.se-special-cost-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;

    color:var(--blue);

    font-size:13px;
    line-height:1.3;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.se-special-cost-eyebrow::before{
    content:"";
    width:28px;
    height:3px;
    flex:0 0 28px;

    background:var(--orange);
    border-radius:20px;
}

.se-special-cost h2{
    margin:0 0 20px !important;
    padding:0 !important;

    color:var(--navy) !important;

    font-size:clamp(34px,4vw,48px) !important;
    line-height:1.12 !important;
    letter-spacing:-1px !important;
    font-weight:800 !important;
}

.se-special-cost-intro{
    margin:0 !important;
    padding:0 !important;

    color:var(--text) !important;

    font-size:17px !important;
    line-height:1.75 !important;
}

/* GRID */

.se-special-cost-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

/* ITEM */

.se-special-cost-item{
    display:grid;
    grid-template-columns:48px 1fr;
    gap:17px;

    padding:27px;

    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
}

.se-special-cost-item:last-child{
    grid-column:1 / -1;
}

.se-special-cost-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;

    background:#edf4fb;
    color:var(--blue);

    border-radius:13px;

    font-size:17px;
    font-weight:900;
}

.se-special-cost-item h3{
    margin:0 0 7px !important;
    padding:0 !important;

    color:var(--navy) !important;

    font-size:19px !important;
    line-height:1.35 !important;
    font-weight:800 !important;
}

.se-special-cost-item p{
    margin:0 !important;
    padding:0 !important;

    color:var(--text) !important;

    font-size:15px !important;
    line-height:1.7 !important;
}

/* BOTTOM */

.se-special-cost-bottom{
    display:grid;
    grid-template-columns:1fr auto;
    gap:30px;
    align-items:center;

    margin-top:30px;
    padding:27px 30px;

    background:var(--navy);
    border-radius:17px;
}

.se-special-cost-bottom-text strong{
    display:block;
    margin-bottom:6px;

    color:#fff;

    font-size:18px;
    line-height:1.4;
    font-weight:800;
}

.se-special-cost-bottom-text span{
    display:block;
    max-width:650px;

    color:#545454;

    font-size:14px;
    line-height:1.65;
}

/* CTA */

.se-special-cost .se-special-cost-btn,
.se-special-cost .se-special-cost-btn:link,
.se-special-cost .se-special-cost-btn:visited{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:9px !important;

    min-height:50px !important;
    padding:13px 22px !important;

    background:#ffffff !important;
    color:var(--navy) !important;

    border:2px solid #ffffff !important;
    border-radius:10px !important;

    text-decoration:none !important;

    font-size:14px !important;
    line-height:1.2 !important;
    font-weight:800 !important;

    white-space:nowrap;

    transition:.2s ease;
}

.se-special-cost .se-special-cost-btn:hover{
    background:var(--orange) !important;
    border-color:var(--orange) !important;
    color:var(--navy) !important;
    transform:translateY(-2px);
}

/* TABLET */

@media(max-width:850px){

    .se-special-cost{
        padding:55px 30px;
        margin-bottom:65px;
    }

    .se-special-cost-grid{
        grid-template-columns:1fr;
    }

    .se-special-cost-item:last-child{
        grid-column:auto;
    }

    .se-special-cost-bottom{
        grid-template-columns:1fr;
    }

    .se-special-cost-btn{
        width:max-content;
    }
}

/* MOBILE */

@media(max-width:600px){

    .se-special-cost{
        padding:45px 18px;
        margin-bottom:55px;
        border-radius:18px;
    }

    .se-special-cost-head{
        margin-bottom:32px;
    }

    .se-special-cost h2{
        font-size:34px !important;
    }

    .se-special-cost-intro{
        font-size:16px !important;
        line-height:1.7 !important;
    }

    .se-special-cost-item{
        grid-template-columns:42px 1fr;
        gap:14px;
        padding:22px 19px;
    }

    .se-special-cost-icon{
        width:42px;
        height:42px;
        border-radius:11px;
    }

    .se-special-cost-item h3{
        font-size:18px !important;
    }

    .se-special-cost-bottom{
        padding:25px 21px;
    }

    .se-special-cost .se-special-cost-btn,
    .se-special-cost .se-special-cost-btn:link,
    .se-special-cost .se-special-cost-btn:visited{
        width:100% !important;
    }
}

<style>
/* =========================================
   SENDEASY — ΠΩΣ ΟΡΓΑΝΩΝΕΤΑΙ ΜΙΑ
   ΕΙΔΙΚΗ ΜΕΤΑΦΟΡΑ
   ========================================= */

.se-special-process{
    --navy:#10233f;
    --blue:#2368a2;
    --orange:#f5a300;
    --text:#536175;
    --border:#e5ebf1;
    --soft:#f6f8fa;

    max-width:1200px;
    margin:0 auto 85px;
    padding:0 20px;
    box-sizing:border-box;
}

.se-special-process *,
.se-special-process *::before,
.se-special-process *::after{
    box-sizing:border-box;
}

.se-special-process-inner{
    display:grid;
    grid-template-columns:1fr .95fr;
    gap:70px;
    align-items:center;
}


/* =========================
   LEFT CONTENT
   ========================= */

.se-special-process-content{
    padding:20px 0;
}

.se-special-process-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:15px;

    color:var(--blue);

    font-size:13px;
    line-height:1.3;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.se-special-process-eyebrow::before{
    content:"";
    width:28px;
    height:3px;
    flex:0 0 28px;

    background:var(--orange);
    border-radius:20px;
}

.se-special-process h2{
    max-width:600px;

    margin:0 0 20px !important;
    padding:0 !important;

    color:var(--navy) !important;

    font-size:clamp(34px,4vw,48px) !important;
    line-height:1.12 !important;
    letter-spacing:-1px !important;
    font-weight:800 !important;
}

.se-special-process-intro{
    max-width:610px;

    margin:0 0 34px !important;
    padding:0 !important;

    color:var(--text) !important;

    font-size:17px !important;
    line-height:1.75 !important;
}


/* =========================
   STEPS
   ========================= */

.se-special-steps{
    position:relative;
    display:grid;
    gap:0;
}

.se-special-step{
    position:relative;

    display:grid;
    grid-template-columns:48px 1fr;
    gap:18px;

    padding:0 0 28px;
}

.se-special-step:last-child{
    padding-bottom:0;
}

/* vertical line */

.se-special-step:not(:last-child)::before{
    content:"";

    position:absolute;

    left:23px;
    top:48px;
    bottom:0;

    width:1px;

    background:#dce4ec;
}


/* NUMBER */

.se-special-step-number{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;

    background:#edf4fb;
    color:var(--blue);

    border:1px solid #dce8f3;
    border-radius:14px;

    font-size:14px;
    line-height:1;
    font-weight:900;
}


/* STEP CONTENT */

.se-special-step-content{
    padding-top:2px;
}

.se-special-step h3{
    margin:0 0 7px !important;
    padding:0 !important;

    color:var(--navy) !important;

    font-size:19px !important;
    line-height:1.35 !important;
    font-weight:800 !important;
}

.se-special-step p{
    max-width:530px;

    margin:0 !important;
    padding:0 !important;

    color:var(--text) !important;

    font-size:15px !important;
    line-height:1.7 !important;
}


/* =========================
   RIGHT IMAGE
   ========================= */

.se-special-process-visual{
    position:relative;
}

.se-special-process-image{
    min-height:620px;

    background:
        url('https://sendeasy.gr/wp-content/uploads/2026/08/organosi-eidikis-metaforas.webp')
        center / cover no-repeat;

    border-radius:22px;
    overflow:hidden;
}


/* SMALL INFO BOX */

.se-special-process-box{
    position:absolute;

    left:-35px;
    bottom:35px;

    max-width:300px;

    padding:20px 22px;

    background:#ffffff;

    border:1px solid var(--border);
    border-radius:15px;

    box-shadow:0 15px 40px rgba(16,35,63,.12);
}

.se-special-process-box strong{
    display:block;

    margin-bottom:6px;

    color:var(--navy);

    font-size:15px;
    line-height:1.4;
    font-weight:800;
}

.se-special-process-box span{
    display:block;

    color:var(--text);

    font-size:13px;
    line-height:1.6;
}

.se-special-process-box::before{
    content:"";

    display:block;

    width:36px;
    height:3px;

    margin-bottom:14px;

    background:var(--orange);

    border-radius:20px;
}


/* =========================
   TABLET
   ========================= */

@media(max-width:900px){

    .se-special-process{
        margin-bottom:65px;
    }

    .se-special-process-inner{
        grid-template-columns:1fr;
        gap:45px;
    }

    .se-special-process-image{
        min-height:480px;
    }

    .se-special-process-box{
        left:25px;
        bottom:25px;
    }
}


/* =========================
   MOBILE
   ========================= */

@media(max-width:600px){

    .se-special-process{
        padding:0 14px;
        margin-bottom:55px;
    }

    .se-special-process-content{
        padding:0;
    }

    .se-special-process h2{
        font-size:34px !important;
    }

    .se-special-process-intro{
        margin-bottom:29px !important;

        font-size:16px !important;
        line-height:1.7 !important;
    }

    .se-special-step{
        grid-template-columns:42px 1fr;
        gap:14px;
        padding-bottom:25px;
    }

    .se-special-step-number{
        width:42px;
        height:42px;
        border-radius:12px;
    }

    .se-special-step:not(:last-child)::before{
        left:20px;
        top:42px;
    }

    .se-special-step h3{
        font-size:18px !important;
    }

    .se-special-step p{
        font-size:14px !important;
    }

    .se-special-process-image{
        min-height:400px;
        border-radius:17px;
    }

    .se-special-process-box{
        position:relative;

        left:auto;
        bottom:auto;

        max-width:none;

        margin:-45px 16px 0;

        border-radius:13px;
    }
}

<style>
/* =========================================
   SENDEASY — TYPES OF SPECIAL TRANSPORT
   ========================================= */

.se-special-types{
    --navy:#10233f;
    --blue:#2368a2;
    --orange:#f5a300;
    --text:#536175;
    --soft:#f7f9fb;
    --border:#e5ebf1;

    max-width:1200px;
    margin:0 auto 85px;
    padding:75px 45px;
    background:var(--soft);
    border-radius:24px;
    box-sizing:border-box;
}

.se-special-types *,
.se-special-types *::before,
.se-special-types *::after{
    box-sizing:border-box;
}

.se-special-types-head{
    max-width:760px;
    margin:0 auto 46px;
    text-align:center;
}

.se-special-types-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:15px;
    color:var(--blue);
    font-size:13px;
    line-height:1.3;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.se-special-types-eyebrow::before{
    content:"";
    width:25px;
    height:3px;
    background:var(--orange);
    border-radius:20px;
}

.se-special-types h2{
    margin:0 0 18px !important;
    padding:0 !important;
    color:var(--navy) !important;
    font-size:clamp(34px,4vw,48px) !important;
    line-height:1.12 !important;
    letter-spacing:-1px !important;
    font-weight:800 !important;
}

.se-special-types-intro{
    margin:0 !important;
    color:var(--text) !important;
    font-size:17px !important;
    line-height:1.75 !important;
}

/* GRID */

.se-special-types-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

/* CARD */

.se-special-type-card{
    position:relative;
    padding:32px 32px 30px;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:17px;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.se-special-type-card:hover{
    transform:translateY(-3px);
    border-color:#d5e0eb;
    box-shadow:0 12px 32px rgba(16,35,63,.07);
}

.se-special-type-number{
    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;
    margin-bottom:22px;

    background:#edf4fb;
    color:var(--blue);

    border-radius:12px;

    font-size:13px;
    font-weight:900;
}

.se-special-type-card h3{
    margin:0 0 12px !important;
    padding:0 !important;

    color:var(--navy) !important;

    font-size:22px !important;
    line-height:1.25 !important;
    font-weight:800 !important;
    letter-spacing:-.3px !important;
}

.se-special-type-card p{
    margin:0 !important;
    padding:0 !important;

    color:var(--text) !important;

    font-size:15px !important;
    line-height:1.75 !important;
}

/* SMALL ORANGE DETAIL */

.se-special-type-card::after{
    content:"";
    position:absolute;
    left:32px;
    bottom:0;

    width:38px;
    height:3px;

    background:var(--orange);
    border-radius:10px 10px 0 0;
}

/* FOOT NOTE */

.se-special-types-note{
    display:flex;
    align-items:flex-start;
    gap:12px;

    max-width:760px;
    margin:32px auto 0;
    padding:18px 21px;

    background:#ffffff;
    border:1px solid var(--border);
    border-radius:13px;

    color:var(--text);
    font-size:14px;
    line-height:1.65;
}

.se-special-types-note-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:27px;
    height:27px;
    flex:0 0 27px;

    background:#eaf7ef;
    color:#168a4a;

    border-radius:50%;
    font-weight:900;
}

/* TABLET */

@media(max-width:800px){

    .se-special-types{
        padding:55px 28px;
        margin-bottom:65px;
    }

    .se-special-types-grid{
        grid-template-columns:1fr;
    }
}

/* MOBILE */

@media(max-width:600px){

    .se-special-types{
        padding:45px 18px;
        border-radius:18px;
        margin-bottom:55px;
    }

    .se-special-types-head{
        margin-bottom:32px;
        text-align:left;
    }

    .se-special-types h2{
        font-size:34px !important;
    }

    .se-special-types-intro{
        font-size:16px !important;
        line-height:1.7 !important;
    }

    .se-special-type-card{
        padding:27px 23px 26px;
    }

    .se-special-type-card::after{
        left:23px;
    }

    .se-special-type-card h3{
        font-size:20px !important;
    }
}

<style>
.se-special-about{
    --navy:#10233f;
    --blue:#2368a2;
    --orange:#f5a300;
    --text:#536175;
    --border:#e6ebf0;

    max-width:1200px;
    margin:0 auto 80px;
    padding:0 20px;
    box-sizing:border-box;
}

.se-special-about *{
    box-sizing:border-box;
}

.se-special-about-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.se-special-about-image{
    min-height:460px;
    border-radius:22px;
    overflow:hidden;
    background:
        url('https://sendeasy.gr/wp-content/uploads/2026/08/metafora-xrimatokivotiou.webp')
        center/cover no-repeat;
    position:relative;
}

.se-special-about-image::after{
    content:"";
    position:absolute;
    left:24px;
    bottom:24px;
    width:90px;
    height:5px;
    background:var(--orange);
    border-radius:20px;
}

.se-special-about-content{
    padding:20px 0;
}

.se-special-about-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:16px;
    color:var(--blue);
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.se-special-about-eyebrow::before{
    content:"";
    width:28px;
    height:3px;
    background:var(--orange);
    border-radius:20px;
}

.se-special-about h2{
    margin:0 0 22px !important;
    color:var(--navy) !important;
    font-size:clamp(32px,4vw,48px) !important;
    line-height:1.12 !important;
    letter-spacing:-1px !important;
    font-weight:800 !important;
}

.se-special-about p{
    margin:0 0 18px !important;
    color:var(--text) !important;
    font-size:17px !important;
    line-height:1.8 !important;
}

.se-special-about-list{
    display:grid;
    gap:12px;
    margin:26px 0 0;
}

.se-special-about-item{
    display:flex;
    align-items:flex-start;
    gap:11px;
    color:var(--navy);
    font-size:15px;
    line-height:1.55;
    font-weight:650;
}

.se-special-about-check{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 24px;
    width:24px;
    height:24px;
    margin-top:1px;
    border-radius:50%;
    background:#eaf7ef;
    color:#168a4a;
    font-size:13px;
    font-weight:900;
}

@media(max-width:850px){

    .se-special-about{
        margin-bottom:60px;
    }

    .se-special-about-inner{
        grid-template-columns:1fr;
        gap:34px;
    }

    .se-special-about-image{
        min-height:360px;
    }

    .se-special-about-content{
        padding:0;
    }
}

@media(max-width:600px){

    .se-special-about{
        padding:0 14px;
        margin-bottom:50px;
    }

    .se-special-about-image{
        min-height:290px;
        border-radius:17px;
    }

    .se-special-about h2{
        font-size:34px !important;
    }

    .se-special-about p{
        font-size:16px !important;
        line-height:1.7 !important;
    }
}

<style>
/* =========================================
   SENDEASY — ΕΙΔΙΚΕΣ ΜΕΤΑΦΟΡΕΣ HERO
   ========================================= */

.se-special-hero{
    --se-navy:#10233f;
    --se-blue:#2368a2;
    --se-orange:#f5a300;
    --se-text:#526176;
    --se-border:#e5ebf1;
    --se-green:#168a4a;

    width:100%;
    max-width:1200px;
    margin:30px auto 70px;
    background:#ffffff;
    border:1px solid var(--se-border);
    border-radius:24px;
    overflow:hidden;
    box-sizing:border-box;
}

.se-special-hero *,
.se-special-hero *::before,
.se-special-hero *::after{
    box-sizing:border-box;
}

.se-special-hero-inner{
    display:grid;
    grid-template-columns:1.03fr .97fr;
    min-height:520px;
}

/* =========================
   LEFT CONTENT
   ========================= */

.se-special-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:68px 60px;
    background:#ffffff;
    position:relative;
    z-index:2;
}

.se-special-eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 18px;
    color:var(--se-blue);
    font-size:14px;
    line-height:1.3;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.se-special-eyebrow::before{
    content:"";
    display:block;
    width:28px;
    height:3px;
    flex:0 0 28px;
    background:var(--se-orange);
    border-radius:20px;
}

/* =========================
   H1
   ========================= */

.se-special-hero .se-special-title{
    margin:0 0 22px !important;
    padding:0 !important;

    color:var(--se-navy) !important;

    font-size:clamp(40px,4.7vw,62px) !important;
    line-height:1.06 !important;
    letter-spacing:-1.8px !important;
    font-weight:800 !important;
}

.se-special-title span{
    color:var(--se-blue);
}

/* =========================
   DESCRIPTION
   ========================= */

.se-special-hero .se-special-description{
    max-width:600px;
    margin:0 !important;
    padding:0 !important;

    color:var(--se-text) !important;

    font-size:17px !important;
    line-height:1.75 !important;
    font-weight:400 !important;
}

/* =========================
   BENEFITS
   ========================= */

.se-special-benefits{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px 25px;

    margin:27px 0 32px;
    padding:0;
}

.se-special-benefit{
    display:flex;
    align-items:center;
    gap:9px;

    color:var(--se-navy);
    font-size:14px;
    line-height:1.4;
    font-weight:700;
}

.se-special-check{
    display:flex;
    align-items:center;
    justify-content:center;

    width:24px;
    height:24px;
    flex:0 0 24px;

    background:#eaf7ef;
    color:var(--se-green);

    border-radius:50%;

    font-size:14px;
    line-height:1;
    font-weight:900;
}

/* =========================
   CTA BUTTON
   ========================= */

.se-special-hero .se-special-cta,
.se-special-hero .se-special-cta:link,
.se-special-hero .se-special-cta:visited{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;

    width:max-content !important;
    min-width:210px !important;
    min-height:54px !important;

    margin:0 !important;
    padding:15px 25px !important;

    background:#10233f !important;
    background-color:#10233f !important;

    color:#ffffff !important;

    border:2px solid #10233f !important;
    border-radius:10px !important;

    text-decoration:none !important;
    text-transform:none !important;

    font-family:inherit !important;
    font-size:16px !important;
    line-height:1.2 !important;
    font-weight:800 !important;

    box-shadow:0 10px 24px rgba(16,35,63,.16) !important;

    cursor:pointer !important;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease !important;
}

.se-special-hero .se-special-cta:hover{
    background:#2368a2 !important;
    background-color:#2368a2 !important;

    border-color:#2368a2 !important;
    color:#ffffff !important;

    text-decoration:none !important;

    transform:translateY(-2px);
    box-shadow:0 13px 28px rgba(35,104,162,.20) !important;
}

.se-special-hero .se-special-cta:focus,
.se-special-hero .se-special-cta:active{
    background:#10233f !important;
    background-color:#10233f !important;
    border-color:#10233f !important;
    color:#ffffff !important;
    text-decoration:none !important;
}

.se-special-arrow{
    display:inline-block;
    color:#ffffff !important;
    font-size:19px;
    line-height:1;
}

/* =========================
   RIGHT IMAGE
   ========================= */

.se-special-image{
    position:relative;
    min-height:520px;

    background-image:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,.60) 7%,
            rgba(255,255,255,0) 28%
        ),
        url('https://sendeasy.gr/wp-content/uploads/2026/08/eidikes-metafores-metafora-pianou.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.se-special-image::after{
    content:"";
    position:absolute;

    right:25px;
    bottom:25px;

    width:105px;
    height:5px;

    background:var(--se-orange);
    border-radius:20px;
}

/* =========================
   TABLET
   ========================= */

@media (max-width:900px){

    .se-special-hero{
        margin:20px auto 50px;
        border-radius:20px;
    }

    .se-special-hero-inner{
        grid-template-columns:1fr;
    }

    .se-special-content{
        padding:48px 35px 42px;
    }

    .se-special-hero .se-special-title{
        font-size:46px !important;
        letter-spacing:-1.2px !important;
    }

    .se-special-image{
        min-height:360px;

        background-image:
            linear-gradient(
                180deg,
                #ffffff 0%,
                rgba(255,255,255,.35) 8%,
                rgba(255,255,255,0) 25%
            ),
            url('https://sendeasy.gr/wp-content/uploads/2026/08/eidikes-metafores-metafora-pianou.webp');
    }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width:600px){

    .se-special-hero{
        margin:15px auto 40px;
        border-radius:17px;
    }

    .se-special-content{
        padding:36px 22px 32px;
    }

    .se-special-eyebrow{
        margin-bottom:15px;
        font-size:12px;
    }

    .se-special-hero .se-special-title{
        margin-bottom:18px !important;

        font-size:37px !important;
        line-height:1.08 !important;
        letter-spacing:-.8px !important;
    }

    .se-special-hero .se-special-description{
        font-size:16px !important;
        line-height:1.7 !important;
    }

    .se-special-benefits{
        display:grid;
        grid-template-columns:1fr;
        gap:11px;

        margin:24px 0 28px;
    }

    .se-special-hero .se-special-cta,
    .se-special-hero .se-special-cta:link,
    .se-special-hero .se-special-cta:visited{
        width:100% !important;
    }

    .se-special-image{
        min-height:290px;
    }

    .se-special-image::after{
        right:18px;
        bottom:18px;
        width:75px;
    }
}

<style>
.se-what{
  padding:85px 20px;
  background:#fff;
  font-family:inherit;
}

.se-what-wrap{
  max-width:1180px;
  margin:0 auto;
}

.se-what-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
}

.se-what-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-what h2{
  margin:0;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-what-intro{
  max-width:720px;
  margin:16px auto 0;
  color:#687386;
  font-size:18px;
  line-height:1.65;
}

.se-what-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.se-what-card{
  display:flex;
  flex-direction:column;
  min-height:235px;
  padding:26px 24px 24px;
  border:1px solid #e8eef5;
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 28px rgba(20,43,70,.04);
  transition:.22s ease;
}

.se-what-card:hover{
  transform:translateY(-3px);
  border-color:#d9e5f1;
  box-shadow:0 16px 34px rgba(20,43,70,.08);
}

.se-what-icon{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  border-radius:13px;
  background:#eef5fc;
  color:#2473c5;
}

.se-what-icon svg{
  width:30px;
  height:30px;
  stroke:currentColor;
}

.se-what-card h3{
  margin:0 0 10px;
  color:#101b2f;
  font-size:19px;
  line-height:1.3;
  font-weight:800;
}

.se-what-card p{
  margin:0;
  color:#687386;
  font-size:15px;
  line-height:1.65;
}

.se-what-bottom{
  max-width:900px;
  margin:34px auto 0;
  padding:24px 28px;
  border-radius:14px;
  background:#f7f9fc;
  text-align:center;
}

.se-what-bottom p{
  margin:0;
  color:#556174;
  font-size:16px;
  line-height:1.7;
}

.se-what-bottom strong{
  color:#101b2f;
}

@media (max-width:1000px){
  .se-what-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:650px){
  .se-what{
    padding:55px 18px;
  }

  .se-what h2{
    font-size:31px;
  }

  .se-what-intro{
    font-size:16px;
  }

  .se-what-grid{
    grid-template-columns:1fr;
  }

  .se-what-card{
    min-height:auto;
  }

  .se-what-bottom{
    padding:20px;
  }
}
</style>

<style>
.se-smallmove{
  padding:90px 20px;
  background:#f8fafc;
  font-family:inherit;
}

.se-smallmove-wrap{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:70px;
  align-items:center;
}

.se-smallmove-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-smallmove h2{
  margin:0 0 22px;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-smallmove-text{
  color:#5f6b7d;
  font-size:17px;
  line-height:1.8;
}

.se-smallmove-text p{
  margin:0 0 18px;
}

.se-smallmove-text strong{
  color:#101b2f;
}

.se-smallmove-highlight{
  margin-top:26px;
  padding:22px 24px;
  border-left:4px solid #2473c5;
  border-radius:8px;
  background:#fff;
  color:#4f5c6f;
  font-size:16px;
  line-height:1.7;
  box-shadow:0 10px 28px rgba(20,43,70,.04);
}

.se-smallmove-side{
  padding:34px;
  border:1px solid #e6edf4;
  border-radius:18px;
  background:#fff;
  box-shadow:0 16px 40px rgba(20,43,70,.06);
}

.se-smallmove-side h3{
  margin:0 0 22px;
  color:#101b2f;
  font-size:24px;
  line-height:1.3;
  font-weight:800;
}

.se-smallmove-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.se-smallmove-list li{
  position:relative;
  padding-left:32px;
  color:#5f6b7d;
  font-size:16px;
  line-height:1.55;
}

.se-smallmove-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#eef5fc;
  color:#2473c5;
  font-size:13px;
  font-weight:800;
}

.se-smallmove-note{
  margin-top:26px;
  padding:18px 20px;
  border-radius:12px;
  background:#11233a;
  color:#d8e1ec;
  font-size:14px;
  line-height:1.6;
}

.se-smallmove-note strong{
  display:block;
  margin-bottom:5px;
  color:#fff;
  font-size:15px;
}

.se-smallmove-cta{
  margin-top:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 28px;
  border-radius:5px;
  background:#2876bd;
  color:#fff !important;
  font-size:16px;
  font-weight:700;
  text-decoration:none !important;
  transition:.2s ease;
}

.se-smallmove-cta:hover{
  background:#1f64a3;
  transform:translateY(-1px);
}

@media (max-width:900px){
  .se-smallmove{
    padding:70px 20px;
  }

  .se-smallmove-wrap{
    grid-template-columns:1fr;
    gap:38px;
  }

  .se-smallmove h2{
    font-size:35px;
  }
}

@media (max-width:600px){
  .se-smallmove{
    padding:55px 18px;
  }

  .se-smallmove h2{
    font-size:30px;
  }

  .se-smallmove-text{
    font-size:16px;
  }

  .se-smallmove-side{
    padding:26px 22px;
  }

  .se-smallmove-cta{
    width:100%;
  }
}
</style>

<style>
.se-appliances{
  padding:90px 20px;
  background:#f8fafc;
  font-family:inherit;
}

.se-appliances-wrap{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:65px;
  align-items:center;
}

.se-appliances-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-appliances h2{
  margin:0 0 22px;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-appliances-text{
  color:#5f6b7d;
  font-size:17px;
  line-height:1.8;
}

.se-appliances-text p{
  margin:0 0 18px;
}

.se-appliances-text strong{
  color:#101b2f;
}

.se-appliances-tip{
  margin-top:26px;
  padding:22px 24px;
  border-left:4px solid #2473c5;
  border-radius:8px;
  background:#fff;
  color:#556174;
  font-size:15px;
  line-height:1.7;
  box-shadow:0 10px 28px rgba(20,43,70,.04);
}

.se-appliances-tip strong{
  color:#101b2f;
}

.se-appliances-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.se-appliance-card{
  min-height:210px;
  padding:24px 22px;
  border:1px solid #e7edf4;
  border-radius:15px;
  background:#fff;
  box-shadow:0 10px 28px rgba(20,43,70,.05);
  transition:.22s ease;
}

.se-appliance-card:hover{
  transform:translateY(-3px);
  border-color:#d9e5f1;
  box-shadow:0 16px 34px rgba(20,43,70,.09);
}

.se-appliance-icon{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:17px;
  border-radius:13px;
  background:#eef5fc;
  color:#2473c5;
}

.se-appliance-icon svg{
  width:29px;
  height:29px;
  stroke:currentColor;
}

.se-appliance-card h3{
  margin:0 0 9px;
  color:#101b2f;
  font-size:19px;
  line-height:1.3;
  font-weight:800;
}

.se-appliance-card p{
  margin:0;
  color:#687386;
  font-size:14px;
  line-height:1.6;
}

.se-appliances-cta{
  margin-top:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 28px;
  border-radius:5px;
  background:#2876bd;
  color:#fff !important;
  font-size:16px;
  font-weight:700;
  text-decoration:none !important;
  transition:.2s ease;
}

.se-appliances-cta:hover{
  background:#1f64a3;
  transform:translateY(-1px);
}

@media(max-width:900px){
  .se-appliances{
    padding:70px 20px;
  }

  .se-appliances-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .se-appliances h2{
    font-size:35px;
  }
}

@media(max-width:650px){
  .se-appliances{
    padding:55px 18px;
  }

  .se-appliances h2{
    font-size:30px;
  }

  .se-appliances-text{
    font-size:16px;
  }

  .se-appliances-grid{
    grid-template-columns:1fr;
  }

  .se-appliance-card{
    min-height:auto;
  }

  .se-appliances-cta{
    width:100%;
  }
}
</style>

<style>
.se-storemove{
  padding:90px 20px;
  background:#fff;
  font-family:inherit;
}

.se-storemove-wrap{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
}

/* LEFT */

.se-storemove-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-storemove h2{
  margin:0 0 22px;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-storemove-text{
  color:#5f6b7d;
  font-size:17px;
  line-height:1.8;
}

.se-storemove-text p{
  margin:0 0 18px;
}

.se-storemove-text strong{
  color:#101b2f;
}

.se-store-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:26px 0 0;
}

.se-store-tag{
  display:inline-flex;
  align-items:center;
  padding:9px 14px;
  border:1px solid #dfe8f1;
  border-radius:999px;
  background:#f8fafc;
  color:#344256;
  font-size:14px;
  font-weight:700;
}

.se-store-tip{
  margin-top:28px;
  padding:21px 23px;
  border-left:4px solid #2473c5;
  border-radius:8px;
  background:#f7f9fc;
  color:#556174;
  font-size:15px;
  line-height:1.7;
}

.se-store-tip strong{
  color:#101b2f;
}

.se-store-cta{
  margin-top:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 28px;
  border-radius:5px;
  background:#2876bd;
  color:#fff !important;
  font-size:16px;
  font-weight:700;
  text-decoration:none !important;
  transition:.2s ease;
}

.se-store-cta:hover{
  background:#1f64a3;
  transform:translateY(-1px);
}


/* RIGHT PANEL */

.se-store-panel{
  position:relative;
  padding:38px 34px;
  border-radius:20px;
  background:#11233a;
  box-shadow:0 20px 48px rgba(17,35,58,.16);
  overflow:hidden;
}

.se-store-panel:before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  right:-100px;
  top:-100px;
  border-radius:50%;
  background:rgba(255,255,255,.035);
}

.se-store-panel-label{
  display:inline-block;
  margin-bottom:13px;
  color:#f6b61d;
  font-size:13px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.se-store-panel h3{
  margin:0 0 30px;
  color:#fff;
  font-size:27px;
  line-height:1.3;
  font-weight:800;
}

.se-store-steps{
  position:relative;
}

.se-store-step{
  position:relative;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:18px;
  padding-bottom:28px;
}

.se-store-step:last-child{
  padding-bottom:0;
}

.se-store-step:not(:last-child):after{
  content:"";
  position:absolute;
  left:26px;
  top:54px;
  bottom:4px;
  width:1px;
  background:rgba(255,255,255,.18);
}

.se-store-num{
  position:relative;
  z-index:2;
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  color:#f6b61d;
  font-size:15px;
  font-weight:800;
}

.se-store-step-content{
  padding-top:3px;
}

.se-store-step-content strong{
  display:block;
  margin-bottom:5px;
  color:#fff;
  font-size:17px;
}

.se-store-step-content span{
  display:block;
  color:#bdc9d8;
  font-size:14px;
  line-height:1.6;
}

.se-store-example{
  margin-top:30px;
  padding:20px;
  border-radius:13px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
}

.se-store-example-title{
  display:block;
  margin-bottom:7px;
  color:#f6b61d;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.se-store-example p{
  margin:0;
  color:#d8e1eb;
  font-size:14px;
  line-height:1.65;
}


/* DISCLAIMER */

.se-store-disclaimer{
  max-width:1180px;
  margin:32px auto 0;
  padding-top:20px;
  border-top:1px solid #edf1f5;
  color:#8a94a3;
  font-size:12px;
  line-height:1.6;
}


/* RESPONSIVE */

@media(max-width:900px){

  .se-storemove{
    padding:70px 20px;
  }

  .se-storemove-wrap{
    grid-template-columns:1fr;
    gap:42px;
  }

  .se-storemove h2{
    font-size:35px;
  }
}

@media(max-width:600px){

  .se-storemove{
    padding:55px 18px;
  }

  .se-storemove h2{
    font-size:30px;
  }

  .se-storemove-text{
    font-size:16px;
  }

  .se-store-panel{
    padding:30px 23px;
  }

  .se-store-panel h3{
    font-size:23px;
  }

  .se-store-cta{
    width:100%;
  }

  .se-store-tag{
    font-size:13px;
  }
}
</style>
<style>
.se-furniture{
  padding:90px 20px;
  background:#fff;
  font-family:inherit;
}

.se-furniture-wrap{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:65px;
  align-items:center;
}

.se-furniture-media{
  position:relative;
}

.se-furniture-media img{
  width:100%;
  display:block;
  border-radius:18px;
  object-fit:cover;
  min-height:430px;
  box-shadow:0 18px 45px rgba(20,43,70,.08);
}

.se-furniture-badge{
  position:absolute;
  left:24px;
  bottom:24px;
  padding:14px 18px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 30px rgba(20,43,70,.12);
}

.se-furniture-badge strong{
  display:block;
  color:#101b2f;
  font-size:16px;
}

.se-furniture-badge span{
  display:block;
  margin-top:3px;
  color:#687386;
  font-size:13px;
}

.se-furniture-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-furniture h2{
  margin:0 0 22px;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-furniture-text{
  color:#5f6b7d;
  font-size:17px;
  line-height:1.8;
}

.se-furniture-text p{
  margin:0 0 18px;
}

.se-furniture-text strong{
  color:#101b2f;
}

.se-furniture-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px 24px;
  margin:26px 0 0;
  padding:0;
  list-style:none;
}

.se-furniture-list li{
  position:relative;
  padding-left:29px;
  color:#556174;
  font-size:15px;
}

.se-furniture-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#2473c5;
  font-weight:800;
}

.se-furniture-tip{
  margin-top:28px;
  padding:20px 22px;
  border-radius:12px;
  background:#f7f9fc;
  color:#556174;
  font-size:15px;
  line-height:1.7;
}

.se-furniture-tip strong{
  color:#101b2f;
}

@media(max-width:900px){
  .se-furniture-wrap{
    grid-template-columns:1fr;
    gap:38px;
  }

  .se-furniture h2{
    font-size:35px;
  }
}

@media(max-width:600px){
  .se-furniture{
    padding:55px 18px;
  }

  .se-furniture h2{
    font-size:30px;
  }

  .se-furniture-text{
    font-size:16px;
  }

  .se-furniture-list{
    grid-template-columns:1fr;
  }

  .se-furniture-media img{
    min-height:300px;
  }
}
</style>
<style>
.se-process{
  padding:85px 20px;
  background:#fff;
  font-family:inherit;
}

.se-process-wrap{
  max-width:1180px;
  margin:0 auto;
}

.se-process-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 44px;
}

.se-process-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-process h2{
  margin:0;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-process-intro{
  max-width:700px;
  margin:16px auto 0;
  color:#687386;
  font-size:18px;
  line-height:1.65;
}

.se-process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  position:relative;
}

.se-process-card{
  position:relative;
  padding:30px 28px;
  border:1px solid #e7edf4;
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 28px rgba(20,43,70,.05);
  transition:.22s ease;
}

.se-process-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(20,43,70,.09);
}

.se-process-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  margin-bottom:18px;
  border-radius:50%;
  background:#11233a;
  color:#f6b61d;
  font-size:14px;
  font-weight:800;
}

.se-process-card h3{
  margin:0 0 10px;
  color:#101b2f;
  font-size:21px;
  font-weight:800;
  line-height:1.3;
}

.se-process-card p{
  margin:0;
  color:#687386;
  font-size:15px;
  line-height:1.7;
}

.se-process-bottom{
  margin-top:34px;
  padding:26px 28px;
  border-radius:16px;
  background:#f7f9fc;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.se-process-bottom-text strong{
  display:block;
  margin-bottom:5px;
  color:#101b2f;
  font-size:19px;
}

.se-process-bottom-text span{
  color:#687386;
  font-size:15px;
  line-height:1.6;
}

.se-process-cta{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 26px;
  border-radius:5px;
  background:#2876bd;
  color:#fff !important;
  font-size:16px;
  font-weight:700;
  text-decoration:none !important;
  transition:.2s ease;
}

.se-process-cta:hover{
  background:#1f64a3;
  transform:translateY(-1px);
}

@media(max-width:900px){
  .se-process{
    padding:70px 20px;
  }

  .se-process h2{
    font-size:35px;
  }

  .se-process-grid{
    grid-template-columns:1fr;
  }

  .se-process-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){
  .se-process{
    padding:55px 18px;
  }

  .se-process h2{
    font-size:30px;
  }

  .se-process-intro{
    font-size:16px;
  }

  .se-process-card{
    padding:26px 22px;
  }

  .se-process-cta{
    width:100%;
  }
}
</style>
<style>
.se-areas{
  padding:90px 20px;
  background:#f8fafc;
  font-family:inherit;
}

.se-areas-wrap{
  max-width:1180px;
  margin:0 auto;
}

.se-areas-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 46px;
}

.se-areas-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-areas h2{
  margin:0;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-areas-intro{
  max-width:760px;
  margin:16px auto 0;
  color:#687386;
  font-size:18px;
  line-height:1.65;
}

.se-areas-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.se-area-card{
  padding:28px 26px;
  border:1px solid #e7edf4;
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 28px rgba(20,43,70,.05);
}

.se-area-icon{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:17px;
  border-radius:13px;
  background:#eef5fc;
  color:#2473c5;
}

.se-area-icon svg{
  width:28px;
  height:28px;
  stroke:currentColor;
}

.se-area-card h3{
  margin:0 0 10px;
  color:#101b2f;
  font-size:20px;
  line-height:1.3;
  font-weight:800;
}

.se-area-card p{
  margin:0;
  color:#687386;
  font-size:15px;
  line-height:1.7;
}

.se-areas-note{
  margin-top:34px;
  padding:28px 30px;
  border-radius:16px;
  background:#11233a;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
}

.se-areas-note strong{
  display:block;
  margin-bottom:7px;
  color:#fff;
  font-size:20px;
}

.se-areas-note p{
  margin:0;
  color:#c8d2df;
  font-size:15px;
  line-height:1.65;
}

.se-areas-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 26px;
  border-radius:5px;
  background:#2876bd;
  color:#fff !important;
  font-size:16px;
  font-weight:700;
  text-decoration:none !important;
}

.se-areas-cta:hover{
  background:#1f64a3;
}

@media(max-width:950px){
  .se-areas{
    padding:70px 20px;
  }

  .se-areas h2{
    font-size:35px;
  }

  .se-areas-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .se-areas-note{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .se-areas{
    padding:55px 18px;
  }

  .se-areas h2{
    font-size:30px;
  }

  .se-areas-intro{
    font-size:16px;
  }

  .se-areas-grid{
    grid-template-columns:1fr;
  }

  .se-area-card{
    padding:24px 22px;
  }

  .se-areas-cta{
    width:100%;
  }
}
</style>
<style>
.se-faq{
  padding:90px 20px;
  background:#fff;
  font-family:inherit;
}

.se-faq-wrap{
  max-width:980px;
  margin:0 auto;
}

.se-faq-head{
  text-align:center;
  max-width:740px;
  margin:0 auto 46px;
}

.se-faq-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-faq h2{
  margin:0;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-faq-intro{
  margin:16px auto 0;
  color:#687386;
  font-size:18px;
  line-height:1.65;
}

.se-faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.se-faq-item{
  border:1px solid #e7edf4;
  border-radius:14px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(20,43,70,.04);
}

.se-faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:#101b2f;
  font-family:inherit;
  font-size:17px;
  font-weight:700;
  line-height:1.4;
  text-align:left;
  cursor:pointer;
}

.se-faq-plus{
  flex:0 0 auto;
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef5fc;
  color:#2473c5;
  font-size:24px;
  line-height:1;
  transition:.25s ease;
}

.se-faq-item.active .se-faq-plus{
  transform:rotate(45deg);
  background:#2473c5;
  color:#fff;
}

.se-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.se-faq-answer-inner{
  padding:0 24px 22px;
  color:#687386;
  font-size:16px;
  line-height:1.75;
}

.se-faq-bottom{
  margin-top:40px;
  padding:28px 30px;
  border-radius:16px;
  background:#11233a;
  text-align:center;
}

.se-faq-bottom strong{
  display:block;
  margin-bottom:7px;
  color:#fff;
  font-size:20px;
}

.se-faq-bottom p{
  margin:0 0 18px;
  color:#c8d2df;
  font-size:15px;
  line-height:1.65;
}

.se-faq-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 26px;
  border-radius:5px;
  background:#2876bd;
  color:#fff !important;
  font-size:16px;
  font-weight:700;
  text-decoration:none !important;
}

.se-faq-cta:hover{
  background:#1f64a3;
}

@media(max-width:600px){
  .se-faq{
    padding:55px 18px;
  }

  .se-faq h2{
    font-size:30px;
  }

  .se-faq-intro{
    font-size:16px;
  }

  .se-faq-question{
    padding:19px 18px;
    font-size:16px;
  }

  .se-faq-answer-inner{
    padding:0 18px 20px;
    font-size:15px;
  }

  .se-faq-cta{
    width:100%;
  }
}
</style>
<style>
.se-cost{
  padding:90px 20px;
  background:#f8fafc;
  font-family:inherit;
}

.se-cost-wrap{
  max-width:1180px;
  margin:0 auto;
}

.se-cost-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 46px;
}

.se-cost-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 14px;
  border-radius:8px;
  background:#eef5fc;
  color:#2473c5;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.se-cost h2{
  margin:0;
  color:#101b2f;
  font-size:42px;
  line-height:1.15;
  font-weight:800;
}

.se-cost-intro{
  max-width:720px;
  margin:16px auto 0;
  color:#687386;
  font-size:18px;
  line-height:1.65;
}

.se-cost-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.se-cost-card{
  padding:28px 26px;
  border:1px solid #e7edf4;
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 28px rgba(20,43,70,.05);
  transition:.22s ease;
}

.se-cost-card:hover{
  transform:translateY(-3px);
  border-color:#d9e5f1;
  box-shadow:0 16px 34px rgba(20,43,70,.09);
}

.se-cost-icon{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  border-radius:13px;
  background:#eef5fc;
  color:#2473c5;
}

.se-cost-icon svg{
  width:29px;
  height:29px;
  stroke:currentColor;
}

.se-cost-card h3{
  margin:0 0 10px;
  color:#101b2f;
  font-size:19px;
  line-height:1.3;
  font-weight:800;
}

.se-cost-card p{
  margin:0;
  color:#687386;
  font-size:15px;
  line-height:1.65;
}

.se-cost-example{
  margin-top:38px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:stretch;
}

.se-cost-example-main{
  padding:30px 32px;
  border-radius:18px;
  background:#11233a;
  color:#fff;
}

.se-cost-example-label{
  display:inline-block;
  margin-bottom:10px;
  color:#f6b61d;
  font-size:13px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.se-cost-example-main h3{
  margin:0 0 14px;
  color:#fff;
  font-size:24px;
  line-height:1.3;
  font-weight:800;
}

.se-cost-example-main p{
  margin:0;
  color:#c8d2df;
  font-size:15px;
  line-height:1.7;
}

.se-cost-example-side{
  padding:30px 32px;
  border:1px solid #e7edf4;
  border-radius:18px;
  background:#fff;
}

.se-cost-example-side strong{
  display:block;
  margin-bottom:12px;
  color:#101b2f;
  font-size:18px;
}

.se-cost-example-side ul{
  margin:0;
  padding:0;
  list-style:none;
}

.se-cost-example-side li{
  position:relative;
  padding-left:26px;
  margin-bottom:9px;
  color:#5f6b7d;
  font-size:15px;
  line-height:1.5;
}

.se-cost-example-side li:last-child{
  margin-bottom:0;
}

.se-cost-example-side li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#2473c5;
  font-weight:800;
}

.se-cost-tip{
  margin-top:28px;
  padding:22px 24px;
  border-left:4px solid #2473c5;
  border-radius:8px;
  background:#fff;
  color:#556174;
  font-size:15px;
  line-height:1.7;
}

.se-cost-tip strong{
  color:#101b2f;
}

.se-cost-cta-wrap{
  text-align:center;
  margin-top:32px;
}

.se-cost-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 28px;
  border-radius:5px;
  background:#2876bd;
  color:#fff !important;
  font-size:16px;
  font-weight:700;
  text-decoration:none !important;
  transition:.2s ease;
}

.se-cost-cta:hover{
  background:#1f64a3;
  transform:translateY(-1px);
}

@media(max-width:950px){
  .se-cost{
    padding:70px 20px;
  }

  .se-cost h2{
    font-size:35px;
  }

  .se-cost-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .se-cost-example{
    grid-template-columns:1fr;
  }
}

@media(max-width:650px){
  .se-cost{
    padding:55px 18px;
  }

  .se-cost h2{
    font-size:30px;
  }

  .se-cost-intro{
    font-size:16px;
  }

  .se-cost-grid{
    grid-template-columns:1fr;
  }

  .se-cost-card{
    padding:24px 22px;
  }

  .se-cost-example-main,
  .se-cost-example-side{
    padding:26px 22px;
  }

  .se-cost-cta{
    width:100%;
  }
}
</style>