@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --green:#0f8f5f;
    --green-dark:#064b3a;
    --green-soft:#e8f7ef;
    --orange:#ff6b00;
    --red:#d92d20;
    --text:#14231f;
    --muted:#66736f;
    --line:#dce8e2;
    --bg:#f5faf7;
    --white:#fff;
    --shadow:0 18px 45px rgba(9,80,58,.12);
    --radius:22px;
    --nv-image-style-spacing: 20px;
    --nv-inline-image-style-spacing: calc(var(--nv-image-style-spacing) / 2);
    --nv-highlight-marker-blue: hsl(201, 97%, 72%);
    --nv-highlight-marker-green: hsl(120, 93%, 68%);
    --nv-highlight-marker-pink: hsl(345, 96%, 73%);
    --nv-highlight-marker-yellow: hsl(60, 97%, 73%);
    --nv-highlight-pen-green: hsl(112, 100%, 27%);
    --nv-highlight-pen-red: hsl(0, 85%, 49%);
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    font-family:'Be Vietnam Pro',Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.55;
}

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

p{
    margin: 0 0 9px 0;
}

.container {
    width:min(1220px,92%);
    margin:auto;
}

.topbar {
    background:linear-gradient(90deg,#064b3a,#0f7652);
    color:#fff;
    font-size:13px;
}

.topbar .container {
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:9px 0;
    white-space:nowrap;
    overflow:hidden;
}

.topbar span:last-child {
    font-weight:800;
}

header {
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
}

.nav {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    height:72px;
}

.logo {
    display:flex;
    align-items:center;
    gap:11px;
    font-weight:900;
    color:var(--green-dark);
    line-height:1.15;
}

.logo-mark {
    width:46px;
    height:46px;
    border-radius:15px;
    background:linear-gradient(135deg,var(--green),#20c986);
    display:grid;
    place-items:center;
    color:#fff;
    font-size:24px;
    box-shadow:0 10px 24px rgba(15,143,95,.25);
}

.logo small {
    font-weight:600;
    color:#6d7f78;
}

.hamb {
    display:none;
    width:42px;
    height:42px;
    border:1px solid var(--line);
    border-radius:13px;
    background:#fff;
    font-size:22px;
}

/* breadcrumb */
.third-nav {
    background-color: var(--green-soft);
    font-weight: 400;
}

.breadcrumbs-wrap {
    position: relative;
    padding: 4px 0;
}

.breadcrumbs-wrap .display {
    height: 35px;
    overflow: hidden;
}

.breadcrumbs {
    display: inline-block;
}

.breadcrumbs li {
    float: left;
}

.breadcrumbs a,
.show-subs-breadcrumbs {
    padding: 8px 14px;
    float: left;
    text-decoration: none;
    color: #444;
    position: relative;
    font-size: 14px;
}

.breadcrumbs li:first-child a {
    padding-left: 0;
}

.breadcrumbs a:before {
    content: '/';
    position: absolute;
    top: 25%;
    left: -2px;
}

.breadcrumbs li:first-child a:before {
    display: none;
}

.breadcrumbs a:hover,
.show-subs-breadcrumbs{
    color: #a90413;
}

.subs-breadcrumbs {
    margin: 0;
    padding: 0;
    background-color: #fff linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0px,
            rgba(0, 0, 0, 0.1) 100%);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: 0 0;
    position: absolute;
    left: 0;
    top: 40px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-top: none;
    box-shadow: 0 0.063em 0.25em rgba(7, 20, 34, 0.25);
    display: none;
    z-index: 999999;
}

.subs-breadcrumbs.open {
    display: block;
}

.subs-breadcrumbs li {
    background-color: #eee;
}

.subs-breadcrumbs li:last-child,
.subs-breadcrumbs li:last-child a,
.subs-breadcrumbs {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.subs-breadcrumbs li,
.subs-breadcrumbs a {
    display: block;
    float: none;
}

.subs-breadcrumbs a {
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    padding: 0 10px;
}

.subs-breadcrumbs li:not(:last-child) a {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.subs-breadcrumbs a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.subs-breadcrumbs a em {
    display: inline-block;
    margin-right: 5px;
    color: #707070;
}

.show-subs-breadcrumbs {
    padding-right: 5px;
    margin-right: 7px;
    width: 30px;
    text-align: center;
}

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

.hidden {
    display: none;
}

.menu {
    display:flex;
    gap:5px;
    font-size:14px;
    font-weight:700;
    color:#31433d;
    text-transform: capitalize;
}

.menu a{
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    transition: .24s ease;
    white-space: nowrap;
}

.menu a:hover {
    color:var(--green);
    background-color: var(--green-soft);
}

.nav-actions {
    display:flex;
    gap:10px;
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 18px;
    border-radius:999px;
    font-weight:800;
    font-size:14px;
    border:1px solid transparent;
    transition:.2s;
    cursor:pointer;
}

.btn-primary {
    background:var(--orange);
    color:#fff;
    box-shadow:0 12px 26px rgba(255,107,0,.25);
}

.btn-outline {
    background:#fff;
    border-color:var(--line);
    color:var(--green-dark);
}

.btn:hover {
    transform:translateY(-2px);
}

.hero {
    position:relative;
    overflow:hidden;
    background:radial-gradient(circle at top left,#ecfff5 0,#f8fffb 35%,#eef8f3 100%);
    padding:64px 0 46px;
}

.hero:before {
    content:"";
    position:absolute;
    right:-140px;
    top:40px;
    width:390px;
    height:390px;
    background:rgba(15,143,95,.10);
    border-radius:50%;
}

.hero-grid {
    display:grid;
    grid-template-columns:1.03fr .97fr;
    gap:40px;
    align-items:center;
    position:relative;
}

.badge {
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    border:1px solid #cce9dc;
    color:var(--green-dark);
    border-radius:999px;
    padding:8px 13px;
    font-weight:800;
    font-size:13px;
    margin-bottom:18px;
}

.hero h1 {
    font-size:45px;
    line-height:1.08;
    margin:0 0 18px;
    color:var(--green-dark);
    letter-spacing:-1.5px;
}

h1.title{
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 18px;
    color: var(--green-dark);
}

.lead {
    font-size:18px;
    color:#48615a;
    max-width:650px;
    margin:0 0 26px;
}

.hero-actions {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:26px;
}

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

.stat {
    background:#fff;
    border:1px solid var(--line);
    padding:16px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(20,70,50,.06);
    text-align:center;
}

.stat b {
    font-size:24px;
    color:var(--green);
    display:block;
}

.stat span {
    font-size:13px;
    color:var(--muted);
}

.visual {
    position: relative;
    background-color:#fff;
    border:1px solid var(--line);
    border-radius:30px;
    box-shadow:var(--shadow);
    height: 430px;
    width: 100%;
    overflow: hidden;
}

.visual img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alert-card {
    position:absolute;
    left:18px;
    bottom:18px;
    background:#fff;
    border-left:5px solid var(--red);
    border-radius:16px;
    padding:13px;
    max-width:245px;
    box-shadow:0 14px 30px rgba(0,0,0,.13);
}

.alert-card b {
    display:block;
    color:var(--red);
    font-size:14px;
}

.alert-card span {
    font-size:12px;
    color:var(--muted);
}

.section {
    padding:64px 0;
}

.section-white{
    background-color: #fff;
}

.section-title {
    text-align:center;
    max-width:740px;
    margin:0 auto 32px;
}

.eyebrow {
    color:var(--green);
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.08em;
}

.section h2 {
    font-size:34px;
    line-height:1.22;
    margin:8px 0 12px;
    color:var(--green-dark);
}

.section-title p,
.muted {
    color:var(--muted);
    margin:0;
}

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

.card {
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:24px;
    box-shadow:0 14px 35px rgba(20,70,50,.06);
}

.icon {
    width:50px;
    height:50px;
    border-radius:16px;
    background:var(--green-soft);
    display:grid;
    place-items:center;
    font-size:24px;
    margin-bottom:14px;
}

.icon .fa{
    color: var(--green);
}

.card h3 {
    margin:0 0 8px;
    color:var(--green-dark);
    font-size:20px;
}

.card p {
    margin:0;
    color:var(--muted);
    font-size:14px;
}

.split {
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:26px;
    align-items:stretch;
}

.panel {
    background:#fff;
    border:1px solid var(--line);
    border-radius:28px;
    padding:26px;
    box-shadow:var(--shadow);
}

.steps {
    display:grid;
    gap:13px;
}

.step {
    display:flex;
    gap:13px;
    padding:15px;
    border-radius:18px;
    background:#f8fcfa;
    border:1px solid var(--line);
}

.step .num {
    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--green);
    color:#fff!important;
    display:grid;
    place-items:center;
    font-weight:900;
    flex:0 0 auto;
}

.step b {
    display:block;
    color:var(--green-dark);
}

.step span {
    font-size:14px;
    color:var(--muted);
}

.form-preview {
    background:#f7fbf9;
    border:1px dashed #b7d9c8;
    border-radius:22px;
    padding:18px;
}

.form-preview .btn{
    width: 100%;
}

.field {
    width:100%;
    height:48px;
    border:1px solid var(--line);
    background:#fff;
    border-radius:13px;
    margin-bottom:10px;
    padding:0 14px;
    color:var(--text);
    font-size:14px;
    outline:none;
    transition:.2s;
    font-family:'Be Vietnam Pro',Arial,sans-serif;
}

.field:focus {
    border-color:var(--green);
    box-shadow:0 0 0 4px rgba(15,143,95,.12);
}

.field::placeholder {
    color:#8a9692;
}

.field-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.form-preview .check {
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin:12px 0 15px;
    font-size:13px;
    color:#48615a;
    line-height:1.5;
    cursor:pointer;
}

.form-preview .check input {
    width:18px;
    height:18px;
    margin-top:2px;
    accent-color:var(--green);
    flex:0 0 auto;
}

.qr-box {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    background:var(--green-dark);
    color:#fff;
    border-radius:20px;
    padding:18px;
    margin-top:13px;
}

.qr {
    width:82px;
    height:82px;
    flex: 0 0 auto;
    font-size: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.process {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    text-align:center;
}

.process-card {
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:22px;
    box-shadow:0 12px 30px rgba(20,70,50,.06);
}

.process-card .round {
    margin:0 auto 12px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--green),#066044);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:24px;
    font-weight:900;
}

.support {
    margin-top:28px;
    background:linear-gradient(135deg,#064b3a,#007a51);
    color:#fff;
    border-radius:24px;
    padding:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
}

.support h3{
    margin-bottom: 5px;
    margin-top: 0;
}

.support p{
    margin: 0;
    color: #d7fff0;
    font-size: 15px;
}

.support .btn-outline{
    flex: 0 0 140px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.feature-news {
    min-height: 310px;
    border-radius: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.feature-news > a:first-child {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.feature-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-news:hover .feature-news-img {
    transform: scale(1.05);
}

.feature-news::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgb(240 240 240) 100%);
    z-index: 2;
    pointer-events: none;
}

.feature-news-content {
    padding: 26px;
    position: relative;
    color: #054b3a;
    z-index: 3;
}

.feature-news h3 {
    font-size: 22px;
    margin: 0 0 8px;
    line-height: 1.3;
}

.feature-news h3 a {
    color: var(--green);
    text-decoration: none;
}

.feature-news h3 a:hover {
    color: var(--orange);
}

.feature-news p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    transition: all 0.2s;
}

.news-item:hover {
    border-color: var(--green-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.news-item small {
    color: var(--orange);
    font-weight: 800;
}

.news-item a {
    display: block;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.news-item:hover a {
    color: var(--green-dark);
}

.footer {
    background:#063d31;
    color:#c7eade;
    padding:38px 0 22px;
}

.footer-grid {
    display:grid;
    grid-template-columns:1.4fr 0.7fr 1fr;
    gap:32px;
}

.footer h4 {
    color:#fff;
    margin:0 0 12px;
}

.footer p,
.footer a {
    color:#c7eade;
    font-size:14px;
}

.copyright {
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:26px;
    padding-top:16px;
    font-size:13px;
    color:#9bd3c2;
}

.form-preview .btn-primary{
    width: 100%;
    margin-top: 4px;
}

.scan-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px dashed #b7d9c8;
}

.scan-box h3{
    display: block;
    color: var(--green-dark);
    margin: 0 0 2px 0;
}

.scan-box span{
    font-size: 13px;
    color: var(--muted);
}

.result-card{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.result-card-inner{
    max-width: 430px;
    margin: auto;
}

.result-icon{
    width: 110px;
    height: 110px;
    border-radius: 34px;
    background: #e8f7ef;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 44px;
    color: var(--green);
    box-shadow: 0 16px 35px rgba(15, 143, 95, .12);
}

.result-card h3{
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 12px;
    color: var(--green-dark);
}

.result-card p{
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 15px;
}

.result-card-items{
    display: grid;
    gap: 12px;
    text-align: left;
}

.card-item{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.card-item .num{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e8f7ef;
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 800;
    flex: 0 0 auto;
}

.card-item h4{
    display: block;
    color: var(--green-dark);
    margin: 0;
}

.card-item span{
    font-size: 13px;
    color: var(--muted);
}

.result-alert{
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #993c1d;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
}

.alert{
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    margin-top: 20px;
}

.alert-success{
    color: green;
    background: #f7fbf9;
    border: 1px dashed #b7d9c8;
}

.chromeframe {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    width: 100% !important;
    z-index: 99999999999999 !important;
    background-color: #ffff00 !important;
    color: #000 !important;
    height: 25px;
    line-height: 25px;
    padding: 0.2em 0;
    text-align: center !important;
}

#timeoutsess {
    display: none;
}

#timeoutsess a {
    color: #2f70a7 !important;
}

/*cookie-notice popup*/

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    z-index: 99999999999999;
    background-color: #eee;
    border: solid 1px #dedede;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.cookie-notice a {
    color: #1a3f5e;
    text-decoration: underline;
}

.cookie-notice div {
    position: relative;
    width: 100%;
    padding: 20px;
    color: #333;
}

.cookie-notice button {
    float: right;
    margin-top: -20px;
    margin-right: -20px;
    margin-left: 10px;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    border: 0;
    font-size: 24px;
}

/* Info die */

.nv-infodie {
    margin: 0 auto;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    border-width: 1px;
    border-color: #dcdcdc;
    border-style: solid;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 300px !important;
    min-width: 300px !important;
    display: table;
    text-align: center;
}

.nv-infodie .panel-body {
    display: table-cell;
    vertical-align: middle;
}

.nv-infodie .logo {
    display: inline;
    max-width: 90%;
    margin-bottom: 10px;
    height: auto;
}

.section-page .panel{
    margin-bottom: 20px;
}

/* Social share */
.social-share-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.social-share-buttons button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    line-height: 1;
    font-size: 12px;
}

.social-share-buttons button.social-share-facebook {
    background-color: #1877F2;
}

.social-share-buttons button.social-share-twitter {
    background-color: #1DA1F2;
}

.social-share-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
}

.card-title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.card-title h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 24px;
    line-height: 1.25;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e8f7ef;
    color: var(--green);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.code-box {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f7fbf9, #fff);
    border: 1px solid var(--line);
    margin-bottom: 20px;
}

.code-box .qr{
    width: 118px;
    height: 118px;
    background: repeating-linear-gradient(45deg, #fff 0 6px, #111 6px 10px);
    border: 10px solid #fff;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
    flex: 0 0 auto;
}

.code-label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
}

.code {
    font-size: 26px;
    font-weight: 800;
    color: var(--green-dark);
}

.owner-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 22px;
    background: #f7fbf9;
    border: 1px solid var(--line);
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--green), #24c789);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

.owner-card h3 {
    margin: 0 0 4px;
    font-size: 23px;
    color: var(--green-dark);
}

.owner-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.info-list {
    display: grid;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    border-bottom: 1px solid #edf2ef;
    font-size: 14px;
}

.info-row span {
    color: var(--muted);
}

.info-row strong {
    text-align: right;
    color: #20342e;
}

.notice {
    padding: 18px;
    border-radius: 22px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #993c1d;
    margin-top: 18px;
}

.notice h3 {
    display: block;
    color: #993c1d;
    margin-bottom: 6px;
    margin-top: 0;
}

.notice p {
    margin: 0;
    font-size: 14px;
    color: #993c1d;
}

.commitment {
    display: grid;
    gap: 12px;
}

.commit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f7fbf9;
    border: 1px solid var(--line);
    font-size: 14px;
    color: #556660;
}

.commit-item .check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f7ef;
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

#btn-cancel-id{
    border-color: var(--red);
    color: #fff;
    background: var(--red);
    box-shadow: 0 14px 30px rgba(217, 45, 32, .35);
}

.danger {
    background: #fff;
    border-color: #fed7aa;
    color: #9a3412;
}

.blue-note {
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    background: #eef6ff;
    border: 1px solid #cfe4ff;
    color: #185fa5;
    font-size: 13px;
}

.float-buttons-container {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: flex;
    gap: 12px;
}

.float-sos, .float-call {
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    display: inline-block;
}

.float-sos {
    background: var(--red);
    box-shadow: 0 14px 30px rgba(217, 45, 32, .35);
}

.float-call {
    background: var(--green);
    box-shadow: 0 14px 30px rgba(15, 143, 95, .35);
}

.alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:4px}
.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}

@media(max-width:960px) {
    .menu{
        display:none;
    }
    .hero-grid,
    .split,
    .footer-grid {
        grid-template-columns:1fr;
    }
    h1 {
        font-size:38px;
    }
    .cards,
    .stats {
        grid-template-columns:1fr;
    }
    .section {
        padding:48px 5px;
    }
    .visual {
        height: 360;
    }
    .support {
        flex-direction:column;
        align-items:flex-start;
    }
    .support .btn {
        width:100%;
        flex: auto;
    }
}

@media(max-width:560px) {
    .container {
        width:97%;
    }
    .topbar .container {
        font-size:12px;
    }
    .topbar span:first-child {
        display:none;
    }
    .nav {
        height:66px;
    }
    .logo-mark {
        width:42px;
        height:42px;
        border-radius:14px;
    }
    .logo {
        font-size:15px;
    }
    .nav-actions .btn{
        padding: 10px 8px;
        font-size: 11px;
    }

    .hero {
        padding:34px 0 34px;
    }
    .badge {
        font-size:11px;
        max-width:100%;
        white-space:normal;
    }
    .hero h1 {
        font-size:35px;
        letter-spacing:-.5px;
    }
    .hero .lead {
        text-align:center;
        font-size:15px;
    }
    .hero-actions {
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
    }
    .hero-actions .btn,
    .form-preview .btn {
        width:100%;
        height:48px;
    }
    .stats {
        grid-template-columns:repeat(3,1fr);
        gap:8px;
    }
    .stat {
        padding:12px 8px;
        border-radius:15px;
    }
    .stat b {
        font-size:18px;
    }
    .stat span {
        font-size:11px;
    }
    .section h2 {
        font-size:26px;
    }
    .section-title {
        text-align:left;
        margin-bottom:22px;
    }
    .cards {
        gap:12px;
    }
    .card,
    .panel {
        padding:18px;
        border-radius:20px;
    }
    .field-row {
        grid-template-columns:1fr;
    }
    .qr-box {
        align-items:flex-start;
    }
    .alert-card {
        left:12px;
        right:12px;
        bottom:12px;
        max-width:none;
    }
    .code-box{
        flex-wrap: wrap;
    }
    .float-buttons-container {
        left:16px;
        right:16px;
        display:grid;
        grid-template-columns: 1fr 1fr;
    }
    .float-sos, .float-call {
        text-align:center;
        display:block;
    }
    .footer {
        padding-bottom:72px;
    }
}

@media screen and (max-width: 768px) {
    input.field, input[type="text"], input[type="tel"], input[type="number"], input[type="email"], input[type="date"], select, textarea {
        font-size: 16px !important;
    }
}

/* Modal Báo sự cố */
.dd-modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.5); }
.dd-modal-content { background-color: #fff; margin: 10vh auto; padding: 25px; border-radius: 8px; width: 90%; max-width: 500px; position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.dd-close-modal { position: absolute; right: 20px; top: 15px; font-size: 28px; font-weight: bold; cursor: pointer; color: #888; }
.dd-close-modal:hover { color: #333; }
.dd-modal-title { margin-top: 0; color: #d9534f; font-size: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.dd-report-alert {
    display: none; 
    padding: 15px; 
    margin-bottom: 20px; 
    border-radius: 8px; 
    font-size: 14px;
}

/* Giao diện trang Báo cáo sự cố */
.text-red { color: var(--red) !important; }
.btn-danger {
    background: #d9534f;
    border-color: #d9534f;
    box-shadow: 0 12px 26px rgba(217, 83, 79, .25);
    color: #fff;
}
.btn-danger:hover {
    background: #c9302c;
}
.qr-scan-box {
    margin-top: 30px;
    cursor: pointer;
    padding: 15px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fafafa;
    transition: all 0.3s;
}
.qr-scan-box:hover {
    background: #fdf2f2;
    border-color: var(--red);
}
.qr-scan-box .qr i {
    color: var(--red);
}
.qr-scan-box h3 {
    margin-top: 0;
    margin-bottom: 5px;
}
.qr-scan-box span {
    font-size: 13px;
    color: #666;
}
.qr-reader-wrap {
    display: none;
    margin-top: 20px;
    text-align: center;
}
.qr-reader-frame {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid var(--red);
    background: #000;
    min-height: 250px;
    position: relative;
}
.qr-reader-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.qr-reader-loading span {
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
}
.btn-stop-scan {
    width: 100%;
    max-width: 400px;
    margin-top: 15px;
    font-weight: bold;
}
.panel-report-full {
    grid-column: 1 / -1;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}
.report-header {
    text-align: center;
    margin-bottom: 25px;
}
.report-header h2 {
    color: var(--red);
    margin-top: 5px;
}
.report-info-box {
    background: #fdf2f2;
    border: 1px dashed #f5c6cb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.report-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.report-info-row:last-child {
    margin-bottom: 0;
}
.report-info-label {
    color: #666;
}
.report-info-val {
    color: var(--text);
    font-weight: bold;
}
.dd-form-actions-flex {
    display: flex;
    gap: 15px;
}
.btn-action-cancel {
    flex: 1;
    text-align: center;
}
.btn-action-submit {
    flex: 2;
}

/* Page Module - Modern Grid List */
.page-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.page-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}
.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--green-dark);
}
.page-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}
.page-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.page-card-title {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}
.page-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.page-card-title a:hover {
    color: var(--green-dark);
}
.page-card-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex-grow: 1;
}
.page-card-readmore {
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    transition: all 0.2s;
}
.page-card-readmore:hover {
    text-decoration: underline;
    gap: 8px;
}

/* Content Table Styling */
.hometext{
    font-size: 17px;
}

.bodytext{
    font-size: 17px;
    font-weight: 300;
}
.bodytext table {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    border: none;
}
.bodytext table thead, .bodytext table th {
    background-color: var(--green-dark) !important;
    color: #ffffff !important;
    text-align: left;
    font-weight: bold;
    border: none !important;
}
.bodytext table th,
.bodytext table td {
    padding: 15px;
    border: 1px solid #eee;
}
.bodytext table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}
.bodytext table tbody tr:nth-of-type(even) {
    background-color: #fcfcfc;
}
.bodytext table tbody tr:hover {
    background-color: #f5fcf5;
}

@media (max-width: 768px) {
    .bodytext table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Other Pages in Detail */
.other-pages {
    margin-top: 40px;
}
.other-pages-title {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.other-pages-title i {
    color: var(--green-dark);
}
.other-pages-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.other-page-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: var(--text);
}
.other-page-item:hover {
    background: #fff;
    border-color: var(--green-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transform: translateX(5px);
}
.other-page-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #888;
    font-size: 14px;
    transition: all 0.2s;
}
.other-page-item:hover .other-page-icon {
    background: var(--green-dark);
    color: #fff;
}
.other-page-text {
    font-weight: 500;
    font-size: 15px;
}

/* CKEditor 4 contents css */
figure:not(.table):not(.media):not(.nv-media) {
    position: relative;
    margin: 5px auto 10px auto;
    text-align: center;
}

figure.image.image-left,
img.image-left {
    margin-right: 15px;
    float: left !important;
}

figure.image.image-right,
img.image-right {
    margin-left: 15px;
    float: right !important;
}

.image-center figure.image,
.image-center {
    text-align: center;
    float: none !important;
}

div.image-center,
p.image-center {
    margin-bottom: 10px;
}

figure.article {
    background-color: #939393;
}

figure.left {
    float: left;
    margin: 5px 10px 10px 0;
}

figure.right {
    float: right;
    margin: 5px 0 10px 10px;
}

figure.center {
    float: none;
    background: transparent;
    margin: 0 auto 10px;
    padding-top: 0;
    text-align: center;
}

figure.noncaption {
    background: transparent;
    padding: 0;
}

figcaption {
    text-align: center;
    margin-top: 5px;
    font-weight: 700;
}

figure figcaption {
    font-size: 12px;
    font-weight: normal;
}

figure.article figcaption {
    color: #fff;
}

figure.article.center figcaption {
    color: inherit;
}

figure.avatar {
    margin-top: 0 !important;
}

figure.avatar figcaption {
    position: absolute;
    bottom: 12px;
    left: 3px;
    width: calc(100% - 6px);
    background-color: #357ebd;
    color: #fff;
    font-size: 11px;
}

.nv-docviewer {
    margin-bottom: 8px;
}

/* CKEditor 5 supported */
/* Table */
figure.table .ck-table-resized {
    table-layout: fixed;
}

figure.table table {
    overflow: hidden;
}

figure.table td,
figure.table th {
    overflow-wrap: break-word;
    position: relative;
}

figure.table {
    margin: 5px auto 10px auto;
    display: table;
}

figure.table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    border: 1px double var(--nv-border-color);
}

figure.table table td,
figure.table table th {
    min-width: 5px;
    padding: 7px;
    border: 1px solid var(--nv-border-color);
}

figure.table table th {
    font-weight: bold;
    border-bottom-width: 2px;
}

figure.table > figcaption {
    display: table-caption;
    caption-side: top;
    word-break: break-word;
    text-align: center;
    outline-offset: -1px;
    margin-top: 0;
}

/* Media */
figure.media {
    clear: both;
    margin: 5px 0 10px 0;
    display: block;
    min-width: 10px;
}

/* NV-Media */
figure.nv-media {
    clear: both;
    margin: 5px 0 10px 0;
    display: block;
    min-width: 10px;
}

figure.nv-media video,
figure.nv-media audio {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

/* Image */
img.image_resized {
    height: auto;
}

figure.image.image_resized {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

figure.image.image_resized img {
    width: 100%;
}

figure.image.image_resized > figcaption {
    display: block;
}

figure.image {
    display: table!important; /* Fix conflicts with Google Docs */
    clear: both;
    text-align: center;
    margin: 5px auto 10px auto;
    min-width: 10px;
}

figure.image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 100%;
    height: auto;
}

figure.image-inline {
    display: inline-flex;
    max-width: 100%;
    align-items: flex-start;
}

figure.image-inline picture {
    display: flex;
}

figure.image-inline picture,
figure.image-inline img {
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 100%;
}

figure.image > figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    padding: 7px 7px 0 7px;
    font-size: 13px;
    outline-offset: -1px;
    margin-top: 0;
}

/* Image Style */
.image-style-block-align-left,
.image-style-block-align-right {
    max-width: calc(100% - var(--nv-image-style-spacing));
}

.image-style-align-left,
.image-style-align-right {
    clear: none;
}

.image-style-side {
    float: right;
    margin-left: var(--nv-image-style-spacing);
    max-width: 50%;
}

.image-style-align-left {
    float: left;
    margin-right: var(--nv-image-style-spacing);
}

.image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}

.image-style-align-right {
    float: right;
    margin-left: var(--nv-image-style-spacing);
}

.image-style-block-align-right {
    margin-right: 0 !important;
    margin-left: auto !important;
}

.image-style-block-align-left {
    margin-left: 0 !important;
    margin-right: auto !important;
}

p + .image-style-align-left,
p + .image-style-align-right,
p + .image-style-side {
    margin-top: 0;
}

.image-inline.image-style-align-left,
.image-inline.image-style-align-right {
    margin-top: var(--nv-inline-image-style-spacing);
    margin-bottom: var(--nv-inline-image-style-spacing);
}

.image-inline.image-style-align-left {
    margin-right: var(--nv-inline-image-style-spacing);
}

.image-inline.image-style-align-right {
    margin-left: var(--nv-inline-image-style-spacing);
}

/* Highlight */
.marker-yellow {
    background-color: var(--nv-highlight-marker-yellow);
}

.marker-green {
    background-color: var(--nv-highlight-marker-green);
}

.marker-pink {
    background-color: var(--nv-highlight-marker-pink);
}

.marker-blue {
    background-color: var(--nv-highlight-marker-blue);
}

.pen-red {
    color: var(--nv-highlight-pen-red);
    background-color: transparent;
}

.pen-green {
    color: var(--nv-highlight-pen-green);
    background-color: transparent;
}

.dd-form-group { margin-bottom: 15px; }
.dd-form-group.mt-15 { margin-top: 15px; }
.dd-form-group.mb-20 { margin-bottom: 20px; }
.dd-form-label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; }
.dd-form-label .req { color: red; }
.dd-form-control { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; font-size: 14px; }
.dd-form-control:disabled { border-color: #ddd; background: #f9f9f9; color: #666; font-weight: bold; }
.dd-form-control:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(15,143,95,.1); }
.dd-form-textarea { resize: vertical; }
.dd-form-actions { text-align: right; }
.dd-btn-cancel { padding: 10px 20px; margin-right: 10px; }
.dd-btn-submit { background: #d9534f; border-color: #d9534f; padding: 10px 20px; color: #fff; font-weight: bold; }
.dd-btn-submit:hover { background: #c9302c; border-color: #ac2925; color: #fff; transform: translateY(-2px); }