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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    height: 80px;
    display: flex;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 30px;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
}

.tim-icon img {
    height: 60px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #4a90e2;
    color: #fff;
    padding: 15px 60px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.hero-image {
    flex: 1.5;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.features {
    padding: 80px 0;
    text-align: center;
}

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

.feature-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #4a90e2;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: #999;
}

.online-docs {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.online-docs h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.online-docs p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.btn-primary.large {
    padding: 15px 80px;
}

footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    margin: 0 10px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
}
