.hero {
    position: relative;
    width: 100%;
    height: 606px;
    background: linear-gradient(135deg, #eef4ff 0%, #ced2fe 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-shape {
    position: absolute;
    right: 0px;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 1;
    pointer-events: none;
}

.hero-person {
    position: absolute;
    right: 50px;
    bottom: 0;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-dot1 {
    position: absolute;
    z-index: 2;
    right: 500px;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 500;
    color: #005bd0;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    color: #252525;
    width: 562px;
    margin-bottom: 24px;
}

.hero-title span {
    font-weight: 800;
    color: #013475;
}

.hero-description {
    font-size: 18px;
    line-height: 27px;
    color: #001e44;
    width: 616px;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(-90deg, #ff9500 0%, #ffac39 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
}

.hero-btn img {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .hero { height: auto; }
    .hero-dot1 { display: none; }
    .hero-bg-shape { position: absolute; width: 55%; right: -20px; }
    .hero-person { right: 0; height: 100%; }
    .hero-content { padding: 20px; }
    .hero-tagline { margin-bottom: 10px; }
    .hero-title { font-size: 40px; line-height: 48px; }
    .hero-description { font-size: 18px; line-height: 27px; width: 52%; margin-bottom: 24px; }
}

@media (max-width: 991px) {
    .hero { height: auto; padding: 0; }
    .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero-title { font-size: 32px; line-height: 40px; }
    .hero-description { font-size: 16px; line-height: 24px; width: 52%; margin-bottom: 24px; }
    .hero-title, .hero-description { width: 100%; }
    .hero-person, .hero-bg-shape { display: none; }
}

@media (max-width: 426px) {
    .hero-title { font-size: 28px; line-height: 36px; }
    .hero-description { font-size: 15px; line-height: 22px; margin-bottom: 24px; }
    .hero-tagline { font-size: 16px; margin-bottom: 8px; }
    .hero-btn { padding: 10px; font-size: 15px; }
}

@media (max-width: 376px) {
    .hero { padding: 0; }
    .hero-title { font-size: 24px; line-height: 32px; margin-bottom: 20px; }
    .hero-description { font-size: 14px; line-height: 21px; margin-bottom: 20px; }
}

@media (max-width: 320px) {
    .hero-title { font-size: 22px; line-height: 28px; margin-bottom: 10px; }
    .hero-description { font-size: 14px; line-height: 21px; margin-bottom: 10px; }
    .hero-tagline { font-size: 16px; margin-bottom: 8px; }
    .hero-btn { padding: 10px; font-size: 15px; }
}
