* {
    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;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo img {
    height: 21px;
}

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: 20px;
    font-size: 14px;
}

.btn-login {
    background-color: #3b71fe;
    color: #fff;
}

.btn-phone {
    border: 1px solid #3b71fe;
    color: #3b71fe;
}

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

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

.hero-text {
    flex: 1;
}

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

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

.hero-btns {
    display: flex;
    gap: 20px;
}

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

.btn-download {
    background-color: #fff;
    color: #3b71fe;
    border: 1px solid #3b71fe;
    padding: 12px 40px;
    border-radius: 4px;
    text-decoration: none;
}

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

.hero-image img {
    max-width: 120%;
    height: auto;
    transform: translateX(10%);
}

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

.services h3 {
    font-size: 32px;
    margin-bottom: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    padding: 30px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 13px;
    color: #999;
}

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

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

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