@charset "UTF-8";* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #f5f7fa;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 11.85px 0;
}

.header .container {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
}

.logo img {
    height: 40px;
	margin-right: 70px
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #2fc4e0;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login {
    text-decoration: none;
    color: #666;
    padding: 8px 20px;
}

.register {
    background: linear-gradient(135deg, #2fc4e0, #1fa8c9);
    color: #fff !important;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.2s;
}

.register:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    color: #1a1d22;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content .subtitle {
    font-size: 24px;
    color: #555;
    margin-bottom: 10px;
}

.hero-content .description {
    font-size: 20px;
    color: #777;
}

.hero-image {
    flex: 0 0 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.contact-service {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
    background: #2fc4e0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(47, 196, 224, 0.3);
    transition: transform 0.3s;
}

.contact-service:hover {
    transform: scale(1.1);
}

.contact-service img {
    width: 30px;
    height: 30px;
}

/* Tabs Section */
.tabs-section {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
}

.tabs-nav {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.tab-btn {
    flex: 1;
    padding: 20px 30px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    max-width: 250px;
}

.tab-btn:hover {
    color: #2fc4e0;
}

.tab-btn.active {
    color: #fff;
    background: linear-gradient(135deg, #2fc4e0, #1fa8c9);
}

/* Content Wrapper */
.content-wrapper {
    padding: 40px 0;
    min-height: 600px;
	max-width:1200px;
	margin:0 auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    flex: 0 0 200px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-nav {
    background: #fff;
    border-radius: 8px;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-nav .nav-item {
    display: block;
    padding: 12px 25px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-nav .nav-item:hover {
    color: #2fc4e0;
    background: #f5f7fa;
}

.sidebar-nav .nav-item.active {
    color: #2fc4e0;
    border-left-color: #2fc4e0;
    background: #f0f8fc;
}

/* Main Content */
.main-content {
    flex: 1;
}

.main-content.full-width {
    width: 100%;
}
#auth-tab ul{
	text-align: initial;
}
#auth-tab .service-list li{left: 23px;}
.service-section {
    margin-bottom: 60px;
    scroll-margin-top: 120px;
}

.service-section h2 {
    font-size: 32px;
    color: #1a1d22;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2fc4e0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(47, 196, 224, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.card-header h3 {
    font-size: 20px;
    color: #1a1d22;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2fc4e0;
    font-weight: bold;
}

.view-detail {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #e5e5e5;
    color: #666;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.view-detail:hover {
    border-color: #2fc4e0;
    color: #2fc4e0;
    background: #f0f8fc;
}

/* Overseas Grid */
.overseas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.country-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(47, 196, 224, 0.15);
}

.country-flag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.country-card h3 {
    font-size: 20px;
    color: #1a1d22;
    margin-bottom: 10px;
}

.country-card p {
    color: #999;
    margin-bottom: 25px;
    font-size: 14px;
}

.consult-btn {
    padding: 10px 30px;
    background: transparent;
    border: 1px solid #e5e5e5;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.consult-btn:hover {
    border-color: #2fc4e0;
    color: #2fc4e0;
}

.consult-btn.highlight {
    background: linear-gradient(135deg, #2fc4e0, #1fa8c9);
    color: #fff;
    border: none;
}

.consult-btn.highlight:hover {
    transform: translateX(5px);
}

/* Trademark Section */
.trademark-section {
    padding: 20px 0;
}

.trademark-section h2 {
    font-size: 32px;
    color: #1a1d22;
    margin-bottom: 30px;
    text-align: center;
}

/* Footer */
.footer {
    background: #1a1d22;
    color: #fff;
    padding: 60px 0 10px;
    margin-top: 80px;
	font-size:14px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2fc4e0;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
}

.qr-codes {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 96px;
    height: 96px;
    margin-bottom: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
}

.qr-item p {
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 10px;
    text-align: center;
    color: #939393;
    font-size: 14px;
}
.footer-bottom a{color:inherit;text-decoration:none;}
.footer-bottom img{vertical-align: middle;margin-right: 4px;}
/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin-top: 40px;
    }

    .tab-content.active {
        flex-direction: column;
    }

    .sidebar {
        position: static;
        width: 100%;
    }

    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
    }

    .sidebar-nav .nav-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .sidebar-nav .nav-item.active {
        border-left: none;
        border-bottom-color: #2fc4e0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }

    .nav {
        gap: 20px;
        font-size: 14px;
    }

    .tabs-nav {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1 1 150px;
        padding: 15px 20px;
        font-size: 16px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .overseas-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .qr-codes {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content .subtitle {
        font-size: 18px;
    }

    .hero-content .description {
        font-size: 16px;
    }

    .nav {
        display: none;
    }

    .overseas-grid {
        grid-template-columns: 1fr;
    }
}
