* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

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

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    background: none;
    opacity: 0.6;
    transition: all 0.2s;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn.active {
    opacity: 1;
    border-color: #007bff;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.main {
    padding: 60px 24px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.intro {
    text-align: center;
    color: #555;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    margin-bottom: 36px;
}

.section h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.section p {
    color: #444;
    margin-bottom: 12px;
}

.section ul {
    list-style: disc;
    padding-left: 24px;
}

.section li {
    color: #444;
    margin-bottom: 10px;
}

.section strong {
    color: #000;
}

.contact-info {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #007bff;
}

.contact-info a:hover {
    text-decoration: underline;
}

.driver-note {
    margin-top: 16px;
    padding: 12px 16px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    color: #856404;
    font-weight: 500;
}

.footer {
    border-top: 1px solid #eee;
    padding: 40px 0 24px;
    background-color: #f9f9f9;
}

.footer h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.footer .contact-info {
    margin-bottom: 24px;
}

.footer .contact-info p {
    margin-bottom: 8px;
    color: #444;
}

.footer .contact-info i {
    color: #28a745;
    width: 20px;
}

.footer .contact-info a {
    color: #007bff;
}

.footer .contact-info a:hover {
    text-decoration: underline;
}

.footer .copyright {
    color: #888;
    font-size: 13px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #ddd;
}

@media (max-width: 600px) {
    .nav-menu {
        display: none;
    }

    .page-title {
        font-size: 24px;
    }

    .main {
        padding: 40px 16px;
    }
}