* {
    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: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}

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

.logo img {
    height: 30px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.header-btns a {
    margin-left: 15px;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
}

.btn-login {
    color: #333;
}

.btn-download-top {
    background-color: #333;
    color: #fff;
}

.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #fdf2e9 0%, #fff 100%);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

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

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background-color: #333;
    color: #fff;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

.btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
}

.btn-outline {
    color: #666;
    text-decoration: none;
    padding: 12px 35px;
}

.hero-image img {
    max-width: 1000px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.products {
    padding: 100px 0;
    text-align: center;
}

.products h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-item {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s;
}

.product-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.product-item p {
    font-size: 14px;
    color: #666;
}

.center-btn {
    margin-top: 40px;
}

.btn-primary.large {
    padding: 15px 50px;
    font-size: 18px;
}

footer {
    padding: 60px 0;
    background: #f9f9f9;
    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;
}
