*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f6efe6;
    color:#0f317a;
}

a{
    color:inherit;
    text-decoration:none;
}

a:focus-visible{
    outline:3px solid #09971b;
    outline-offset:4px;
}

.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(28,18,10,.55), rgba(28,18,10,.72)),
        url('https://marezu.space/accounts/bezgenenerji/subscriptions/maupad/9875441.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
}

.navbar{
    width:100%;
    padding:24px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
}

.logo{
    font-size:28px;
    font-weight:800;
    letter-spacing:1px;
    color:#0f317a;
}

.logo span{
    color:#09971b;
}

.logo small{
    font-size:12px;
    position:relative;
    top:-4px;
    margin-left:12px;
    color:#09971b;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    margin-left:28px;
    font-size:15px;
    opacity:.9;
}

.navbar a:hover{
    color:#09971b;
}

.hero-content{
    flex:1;
    display:flex;
    align-items:center;
    padding:0 7%;
    color:#fff;
}

.hero-box{
    max-width:760px;
}

.hero-box h1{
    font-size:64px;
    line-height:1.05;
    margin-bottom:24px;
}

.hero-box p{
    font-size:19px;
    line-height:1.7;
    color:#fff;
    margin-bottom:34px;
}

.buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}

.btn-primary{
    background:#09971b;
    color:#fff;
}

.btn-primary:hover{
    background:#077516;
}

.btn-outline{
    border:1px solid rgba(255,255,255,.7);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#0f317a;
}

.section{
    padding:90px 7%;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:14px;
}

.section-title p{
    color:#333;
    font-size:17px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    background:#fffaf3;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(60,38,18,.12);
    transition:.25s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.card-content{
    padding:26px;
}

.card-content h3{
    font-size:22px;
    margin-bottom:12px;
}

.card-content p{
    color:#333;
    line-height:1.6;
    margin-bottom:18px;
}

.card-content span{
    color:#09971b;
    font-weight:800;
}

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    background:#0f317a;
    color:#fff;
}

.about img{
    width:100%;
    border-radius:28px;
}

.about h2{
    font-size:42px;
    margin-bottom:22px;
}

.about p{
    color:#fff;
    line-height:1.8;
    margin-bottom:18px;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:34px;
}

.feature{
    background:rgba(255,255,255,.08);
    padding:22px;
    border-radius:18px;
}

.feature strong{
    color:#09971b;
    display:block;
    margin-bottom:8px;
}

.contact{
    background:#fffaf3;
    border-radius:30px;
    padding:45px;
    max-width:900px;
    margin:auto;
    text-align:center;
    box-shadow:0 20px 45px rgba(60,38,18,.12);
}

.contact h2{
    font-size:36px;
    margin-bottom:20px;
}

.contact p{
    color:#333;
    line-height:1.8;
    margin-bottom:25px;
}

.info-box{
    margin-bottom:16px;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.info-box svg{
    width:20px;
    height:20px;
    fill:#09971b;
    flex-shrink:0;
}

.info-box a{
    color:#0f317a;
    text-decoration:none;
    font-weight:700;
}

.info-box a:hover{
    color:#09971b;
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.25s;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.05);
}

.whatsapp-float svg{
    width:38px;
    height:38px;
    fill:#fff;
}

.footer{
    background:#0f317a;
    color:#fff;
    text-align:center;
    padding:28px;
}

@media(max-width:900px){
    .hero-box h1{
        font-size:42px;
    }

    .navbar{
        flex-direction:column;
        gap:18px;
    }

    .navbar div:last-child{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
    }

    .navbar a{
        margin-left:0;
    }

    .cards,
    .about,
    .features{
        grid-template-columns:1fr;
    }

    .contact{
        padding:30px;
    }

    .whatsapp-float{
        width:58px;
        height:58px;
        right:15px;
        bottom:15px;
    }

    .whatsapp-float svg{
        width:34px;
        height:34px;
    }
}

@media(prefers-reduced-motion:reduce){
    .btn,
    .card,
    .whatsapp-float,
    .marezu-powered,
    .marezu-powered-btn{
        transition-duration:.01ms;
    }
}

.translate-box{
    position:fixed;
    left:-20px;
    top:500px;
    transform:translateY(-50%);
    z-index:9999;
}

@media(max-width:900px){

    .translate-box{
        top:300px;
    }

}

.gtranslate_wrapper{
    position:relative !important;
}

.gt_float_switcher{
    box-shadow:0 8px 25px rgba(0,0,0,.18) !important;
    border-radius:0 12px 12px 0 !important;
    overflow:hidden !important;
}

.gt_float_switcher .gt-selected{
    background:#0f317a !important;
    color:#fff !important;
    border:1px solid #09971b !important;
    border-left:none !important;
}

.gt_float_switcher .gt-selected .gt-current-lang{
    color:#fff !important;
}

.gt_float_switcher .gt_options{
    background:#0f317a !important;
}

.gt_float_switcher .gt_options a{
    color:#fff !important;
}

.gt_float_switcher .gt_options a:hover{
    background:#09971b !important;
    color:#0f317a !important;
}

.marezu-powered{
    position:fixed;
    left:20px;
    bottom:0;
    width:270px;
    height:44px;
    background:#09971b;
    color:#fff;
    z-index:9998;
    border-radius:6px 6px 0 0;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.22);
    transition:height .3s ease;
}

.marezu-powered:hover{
    height:285px;
}

.marezu-powered-top{
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-weight:900;
}

.marezu-powered-top small{
    font-size:10px;
    letter-spacing:.5px;
    flex-shrink:0;
}

.marezu-logo{
    height:14px;
    width:auto;
    display:block;
    color:#fff;
    flex-shrink:0;
}

.marezu-powered-content{
    padding:10px 18px 18px;
    text-align:center;
}

.marezu-powered-preview{
    position:relative;
    width:100%;
    height:95px;
    background:rgba(255,255,255,.18);
    border-radius:2px;
    overflow:hidden;
    margin-bottom:12px;
}

.marezu-preview-badge{
    position:absolute;
    top:6px;
    right:6px;
    padding:3px 7px;
    border-radius:20px;
    background:rgba(255,255,255,.22);
    color:#fff;
    font-size:8px;
    font-weight:800;
    letter-spacing:.8px;
    z-index:2;
}

.marezu-preview-browser{
    height:14px;
    display:flex;
    align-items:center;
    gap:4px;
    padding:0 8px;
    background:rgba(255,255,255,.22);
}

.marezu-preview-browser span{
    width:5px;
    height:5px;
    border-radius:50%;
    background:#fff;
    opacity:.9;
}

.marezu-preview-hero{
    width:72%;
    height:18px;
    margin:10px auto 8px;
    border-radius:10px;
    background:#fff;
    opacity:.95;
}

.marezu-preview-line{
    width:48%;
    height:5px;
    margin:0 auto 6px;
    border-radius:10px;
    background:#fff;
    opacity:.75;
}

.marezu-preview-line-wide{
    width:64%;
}

.marezu-preview-boxes{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:8px;
}

.marezu-preview-boxes i{
    width:35px;
    height:22px;
    border-radius:5px;
    background:#fff;
    opacity:.9;
    display:block;
}

.marezu-powered-content p{
    font-size:14px;
    line-height:1.35;
    font-weight:700;
    margin-bottom:14px;
}

.marezu-powered-btn{
    display:block;
    width:100%;
    background:#fff;
    color:#09971b;
    padding:12px;
    border-radius:4px;
    font-size:17px;
    font-weight:900;
    box-shadow:inset 0 -3px 0 rgba(0,0,0,.25);
    transition:
        transform .35s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease,
        background .35s ease;
}

.marezu-powered-btn:hover{
    background:#fff;
    transform:translateY(-1px) scale(1.015);
    box-shadow:
        inset 0 -3px 0 rgba(0,0,0,.25),
        0 8px 20px rgba(0,0,0,.15);
}

@media(max-width:900px){

    .marezu-powered{
        width:240px;
        height:40px;
        left:15px;
    }

    .marezu-powered.mobile-open{
        height:250px;
    }

    .marezu-powered:hover{
        height:250px;
    }

    .marezu-powered-top{
        height:40px;
    }

    .marezu-powered-top small{
        font-size:9px;
    }

    .marezu-logo{
        height:12px;
    }

    .marezu-powered-preview{
        height:80px;
    }

    .marezu-powered-content p{
        font-size:12px;
    }

    .marezu-powered-btn{
        font-size:14px;
        padding:10px;
    }
}
