body {
    background: #fbfbfb;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.toki-header {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0;
}
.toki-logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: #005baa;
    letter-spacing: 2px;
    margin-bottom: 2px;
}
.toki-subtitle {
    font-size: 1rem;
    color: #005baa;
    margin-bottom: 6px;
}
.toki-title {
    display: inline-block;
    background: #005baa;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.toki-city {
    position: relative;
    width: 100%;
    background: url('assets/img/siluet.png') repeat-x left bottom;
    background-size: contain;
    min-height: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.toki-form-wrapper {
    max-width: 350px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    padding: 28px 20px 18px 20px;
    margin-top: 0;
    text-align: center;
}
.form-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
}
label {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    color: #333;
    font-weight: 500;
    text-align: left;
}
input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 8px;
    background: #fff;
    box-sizing: border-box;
}
.radio-group {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    justify-content: flex-start;
}
.toki-btn {
    width: 100%;
    background: linear-gradient(to bottom, #e0e0e0, #bdbdbd);
    color: #222;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 18px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0,0,0,0.07);
    transition: background 0.2s;
}
.toki-btn:hover {
    background: linear-gradient(to bottom, #bdbdbd, #e0e0e0);
}
.toki-info {
    margin-top: 18px;
    font-size: 0.98rem;
    color: #222;
}
.toki-link {
    color: #009e3c;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-top: 6px;
}
.toki-link:hover {
    text-decoration: underline;
}
@media (max-width: 480px) {
    .toki-form-wrapper {
        max-width: 98vw;
        padding: 14px 4vw 10px 4vw;
    }
    .toki-header {
        margin-top: 10px;
    }
    .toki-city svg {
        height: 28px;
    }
}
.toki-footer {
    background: #0d1b36;
    color: #fff;
    margin-top: 48px;
    position: relative;
    padding: 0 0 0 0;
    font-family: inherit;
}
.toki-footer .footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 48px 32px 32px 32px;
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 1200 200" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 Q300 0 600 100 T1200 100" stroke="%231a2a4f" stroke-width="2" fill="none"/><path d="M0 150 Q300 50 600 150 T1200 150" stroke="%231a2a4f" stroke-width="2" fill="none"/></svg>') repeat-x #0d1b36;
    border-radius: 12px 12px 0 0;
}
.footer-left {
    flex: 2;
    min-width: 260px;
}
.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}
.footer-desc {
    font-size: 1.08rem;
    color: #e0e6f3;
    line-height: 1.5;
}
.footer-right {
    flex: 1;
    min-width: 180px;
    text-align: right;
    margin-left: 32px;
}
.footer-contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.footer-contact-label {
    font-size: 1rem;
    color: #bfc8e6;
    margin-bottom: 2px;
}
.footer-phone {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2px;
    border-bottom: 3px solid #1ec87a;
    display: inline-block;
    color: #fff;
    letter-spacing: 1px;
}
.footer-phone span {
    font-weight: 700;
    color: #fff;
}
.footer-up {
    position: absolute;
    left: 50%;
    top: -32px;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 2;
}
.footer-up-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: box-shadow 0.2s;
}
.footer-up:hover .footer-up-circle {
    box-shadow: 0 4px 16px rgba(30,200,122,0.18);
}
.footer-up svg {
    display: block;
}
.footer-bottom {
    text-align: center;
    font-size: 0.98rem;
    color: #e0e6f3;
    padding: 18px 0 10px 0;
    background: none;
}
@media (max-width: 900px) {
    .toki-footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 48px 8vw 32px 8vw;
    }
    .footer-right {
        text-align: center;
        margin-left: 0;
        margin-top: 32px;
    }
}
@media (max-width: 600px) {
    .toki-footer .footer-content {
        padding: 36px 2vw 24px 2vw;
    }
    .footer-title {
        font-size: 1.1rem;
    }
    .footer-phone {
        font-size: 1.1rem;
    }
    .footer-bottom {
        font-size: 0.92rem;
    }
}
.toki-page-header {
    width: 100%;
    background: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    margin-bottom: 0;
}
.header-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 2px 10px;
    background-color: #fbfbfb;
    
}
.header-logo {
    height: 90px;
    background: none;
    object-fit: contain;
    display: block;
}
@media (max-width: 700px) {
    .header-logos {
        gap: 12px;
        padding: 8px 4vw;
    }
    .header-logo {
        height: 54px;
    }
}
.cover-header-img {
    width: 100%;
    height: 48px;
    object-fit: cover;
    display: block;
    border-radius: 0 0 12px 12px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) {
    .toki-city {
        min-height: 120px;
    }
    .cover-header-img {
        height: 120px;
    }
} 