:root{
    --t24-red:#c9001f;
    --t24-dark:#151d26;
    --t24-dark2:#101820;
    --t24-bg:#eef1f4;
    --t24-card:#fff;
    --t24-line:#d8dde2;
    --t24-text:#101820;
    --t24-muted:#66717d;
}
*{box-sizing:border-box}
body{
    margin:0;
    background:var(--t24-bg);
    color:var(--t24-text);
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.45;
}
a{color:inherit}
.t24-topline{
    background:#111820;
    color:#fff;
    font-size:14px;
    height:30px;
}
.t24-topline-inner{
    max-width:1180px;
    margin:0 auto;
    padding:0 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:30px;
}
.t24-topline a{color:#fff;text-decoration:none;font-weight:700}
.t24-masthead{
    background:#fff;
    border-bottom:1px solid #d8dde2;
}
.t24-masthead-inner{
    max-width:1180px;
    margin:0 auto;
    padding:22px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}
.t24-logo-row{display:flex;align-items:center;gap:14px}
.t24-logo-box{
    width:58px;
    height:58px;
    border-radius:9px;
    background:var(--t24-red);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:900;
}
.t24-title{font-size:34px;font-weight:900;line-height:1;margin:0}
.t24-subtitle{color:var(--t24-muted);margin-top:5px}
.t24-contact{text-align:right;color:var(--t24-muted);font-size:14px}
.t24-contact strong{color:#101820}
.t24-catbar{background:#1b242e;color:#fff}
.t24-catbar-inner{
    max-width:1180px;
    margin:0 auto;
    padding:0 18px;
    display:flex;
    overflow-x:auto;
}
.t24-catbar a{
    color:#fff;
    text-decoration:none;
    padding:17px 18px;
    border-left:1px solid rgba(255,255,255,.1);
    font-weight:900;
    white-space:nowrap;
}
.t24-catbar a.active{background:var(--t24-red)}
.t24-catbar a:hover{background:#253140}
.t24-main{
    max-width:1180px;
    margin:0 auto;
    padding:24px 18px 46px;
}
.t24-page-title{
    background:#fff;
    border:1px solid var(--t24-line);
    border-radius:5px;
    padding:20px;
    margin-bottom:18px;
}
.t24-page-title h1{margin:0 0 6px;font-size:30px}
.t24-page-title p{margin:0;color:var(--t24-muted)}
.t24-card{
    background:#fff;
    border:1px solid var(--t24-line);
    border-radius:5px;
    padding:22px;
    margin-bottom:18px;
}
.t24-card h2{font-size:22px;margin:24px 0 8px}
.t24-card h2:first-child{margin-top:0}
.t24-card p{margin:7px 0}
.t24-card ul{margin-top:6px}
.t24-label{font-weight:900}
.t24-note{
    background:#fff4e0;
    color:#805000;
    border:1px solid #f0d39a;
    border-radius:5px;
    padding:12px;
    margin-bottom:18px;
}
.t24-grid2{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:18px;
}
.t24-form label{
    display:grid;
    gap:6px;
    font-weight:900;
    font-size:13px;
    margin-bottom:12px;
}
.t24-form input,
.t24-form textarea,
.t24-form select{
    width:100%;
    border:1px solid #c9d0d8;
    border-radius:5px;
    padding:11px;
    font:inherit;
}
.t24-form textarea{min-height:130px}
.t24-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--t24-red);
    color:#fff;
    border:0;
    border-radius:4px;
    padding:10px 14px;
    font-weight:900;
    text-decoration:none;
    cursor:pointer;
}
.t24-btn.dark{background:#213246}
.t24-alert-ok{
    background:#e6f4ea;
    color:#157347;
    border:1px solid #bfe5c8;
    border-radius:5px;
    padding:12px;
    margin-bottom:18px;
}
.t24-alert-error{
    background:#fde8e7;
    color:#b42318;
    border:1px solid #f5b5b1;
    border-radius:5px;
    padding:12px;
    margin-bottom:18px;
}
.t24-footer{
    background:#101820;
    color:#fff;
    padding:30px 0;
    margin-top:30px;
}
.t24-footer-inner{
    max-width:1180px;
    margin:0 auto;
    padding:0 18px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:24px;
}
.t24-footer a{color:#fff}
.t24-small{font-size:13px}
@media(max-width:900px){
    .t24-topline{height:auto}
    .t24-topline-inner,.t24-masthead-inner{display:block}
    .t24-contact{text-align:left;margin-top:14px}
    .t24-title{font-size:28px}
    .t24-catbar-inner{padding:0}
    .t24-footer-inner,.t24-grid2{grid-template-columns:1fr}
}