 /* Hero Section */
    .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: #ffffff;
        overflow: hidden;
        padding: 140px 0 80px;
    }

    .hero-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
    }

    /* Content Section */
    .hero-content-wrapper {
        position: relative;
        z-index: 2;
    }

    .hero-content {
        max-width: 600px;
    }

    /* Small Subtitle */
    .hero-subtitle-top {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .subtitle-line {
        width: 60px;
        height: 3px;
        background: #1E73BE;
    }

    .hero-subtitle-top span {
        font-size: 0.95rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Main Title */
    .hero-main-title {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        color: #000000;
        margin-bottom: 1.5rem;
    }

    .title-highlight {
        color: #1E73BE;
        position: relative;
        display: inline-block;
    }

    /* Description */
    .hero-description {
        font-size: 1.15rem;
        line-height: 1.7;
        color: #666666;
        margin-bottom: 2rem;
    }

    /* Features List */
    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .feature-item i {
        color: #1E73BE;
        font-size: 1.2rem;
    }

    .feature-item span {
        font-size: 1rem;
        color: #333333;
        font-weight: 500;
    }

    /* Buttons */
    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.2rem 2.5rem;
        font-size: 1.05rem;
        font-weight: 600;
        border-radius: 0;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-hero-primary {
        background: #1E73BE;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(30, 115, 190, 0.25);
    }

    .btn-hero-primary:hover {
        background: #155a94;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(30, 115, 190, 0.35);
    }

    .btn-hero-secondary {
        background: transparent;
        color: #1E73BE;
        border: 2px solid #1E73BE;
    }

    .btn-hero-secondary:hover {
        background: #f0f7ff;
        transform: translateY(-2px);
    }

    /* Stats */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #e5e5e5;
    }

    .stat-box h3 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1E73BE;
        margin: 0 0 0.5rem 0;
        line-height: 1;
    }

    .stat-box p {
        font-size: 0.9rem;
        color: #666666;
        margin: 0;
    }

    /* Visual Section */
    .hero-visual-wrapper {
        position: relative;
        height: 700px;
        margin-top: -50px;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 100%;
    }

    /* Background Shape */
    .visual-bg-shape {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.08) 0%, rgba(30, 115, 190, 0.03) 100%);
        border-radius: 50%;
        z-index: 0;
    }

    /* Main Image */
    .visual-image {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .visual-image img {
        max-width: 110%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    }

    /* Info Cards */
    .info-card {
        position: absolute;
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 1rem;
        z-index: 2;
        transition: all 0.3s ease;
        border-left: 3px solid #1E73BE;
    }

    .info-card:hover {
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }

    .card-top {
        top: 15%;
        left: -5%;
        animation: float-card 4s ease-in-out infinite;
    }

    .card-bottom {
        bottom: 20%;
        right: -5%;
        animation: float-card 4s ease-in-out infinite;
        animation-delay: 2s;
    }

    @keyframes float-card {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
    }

    .card-icon-wrapper {
        width: 50px;
        height: 50px;
        background: #1E73BE;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-icon-wrapper i {
        color: #ffffff;
        font-size: 1.3rem;
    }

    .card-content h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000000;
        margin: 0 0 0.25rem 0;
    }

    .card-content p {
        font-size: 0.9rem;
        color: #666666;
        margin: 0;
    }

    /* Responsive Design */
    @media screen and (max-width: 1200px) {
        .hero-wrapper {
            gap: 4rem;
        }

        .hero-main-title {
            font-size: 3.5rem;
        }
    }

    @media screen and (max-width: 968px) {
        .hero-section {
            padding: 130px 0 60px;
        }

        .hero-wrapper {
            grid-template-columns: 1fr;
            gap: 4rem;
        }

        .hero-content {
            max-width: 100%;
            text-align: center;
        }

        .hero-subtitle-top {
            justify-content: center;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-features {
            align-items: center;
        }

        .hero-stats {
            justify-content: center;
        }

        .hero-visual-wrapper {
            height: 500px;
            margin-top: 0;
        }

        .visual-bg-shape {
            width: 450px;
            height: 450px;
        }

        .visual-image img {
            max-width: 100%;
        }
    }

    @media screen and (max-width: 768px) {
        .hero-section {
            padding: 80px 0 40px;
        }

        .hero-wrapper {
            padding: 0 1.5rem;
        }

        .hero-main-title {
            font-size: 2.5rem;
        }

        .hero-description {
            font-size: 1rem;
        }

        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            justify-content: center;
        }

        .hero-stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .stat-box h3 {
            font-size: 2rem;
        }

        .hero-visual-wrapper {
            height: 400px;
        }

        .visual-bg-shape {
            width: 380px;
            height: 380px;
        }
    }

    @media screen and (max-width: 480px) {
        .hero-main-title {
            font-size: 2rem;
        }

        .hero-subtitle-top span {
            font-size: 0.85rem;
        }

        .subtitle-line {
            width: 40px;
        }

        .hero-description {
            font-size: 0.95rem;
        }

        .feature-item span {
            font-size: 0.9rem;
        }

        .hero-visual-wrapper {
            height: 300px;
        }

        .visual-bg-shape {
            width: 300px;
            height: 300px;
        }
    }