.hero {
    background: linear-gradient(135deg, #4080ff 0%, #66a3ff 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}
.hero-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}
.hero-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.hero-tag img {
    width: 28px;
    height: 28px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.btn-primary-hero {
    background: #fff;
    color: #4080ff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    text-decoration: none;
}
.btn-outline-hero {
    background: transparent;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #fff;
    text-decoration: none;
}
.hero-downloads {
    display: flex;
    gap: 25px;
}
.download-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.download-item:hover {
    background: rgba(255,255,255,0.25);
}
.download-item img {
    width: 28px;
    height: 28px;
}
.hero-image {
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    height: auto;
}
.features {
    background: #fff;
}
.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background: #fafbfc;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.feature-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4080ff 0%, #66a3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card .icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.feature-card p {
    color: #666;
    font-size: 0.95rem;
}
.map-section {
    background: #f8f9fa;
}
.map-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.map-info {
    flex: 1;
}
.map-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.map-info-item .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4080ff 0%, #66a3ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}
.map-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}
.map-info-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}
.map-chart {
    flex: 2;
    text-align: center;
}
.map-chart img {
    max-width: 100%;
}
.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.service-block.reverse {
    flex-direction: row-reverse;
}
.service-img {
    flex: 1;
    text-align: center;
}
.service-img img {
    max-width: 100%;
}
.service-content {
    flex: 1;
}
.service-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-content > p {
    color: #666;
    margin-bottom: 30px;
}
.service-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.service-check .check-icon {
    width: 24px;
    height: 24px;
    background: #4080ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
}
.service-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}
.btn-service {
    background: #4080ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    text-decoration: none;
}
.btn-service-outline {
    background: transparent;
    color: #4080ff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #4080ff;
    text-decoration: none;
}
.testimonials {
    background: #f8f9fa;
}
.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}
.testimonial-content {
    color: #555;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.testimonial-highlight {
    color: #4080ff;
    font-weight: 600;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-user h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}
.testimonial-user p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}
.news-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.news-card-content {
    padding: 20px;
}
.news-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}
.news-card-content h4 a {
    color: inherit;
    text-decoration: none;
}
@media (max-width: 991px) {
    .hero { padding: 50px 0; }
    .hero h1 { font-size: 2rem; }
    .map-container, .service-block { flex-direction: column; }
    .service-block.reverse { flex-direction: column; }
    .hero-downloads { flex-wrap: wrap; }
}
