@media (max-width: 1050px) {
    /* Hero Section */
    .hero-section {
        margin-top: 55px;
    }
}
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        background: var(--gradation);
        color: #FFFFFF;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        width: 100%;
        padding: 80px 47.5px;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 55px;
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .hero-subtitle {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        line-height: normal;
        letter-spacing: -0.8px;
        color: #FFFFFF;
    }

    .hero-title {
        font-size: 30px;
        font-weight: 700;
        margin: 0;
        line-height: normal;
        letter-spacing: -0.96px;
        color: #FFFFFF;
    }

    .cta-button-primary {
        width: 280px;
        background-color: #FFFFFF;
        color: #101010;
        font-size: 18px;
        font-weight: 700;
        padding: 15px 10px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        text-align: center;
        box-shadow: 0px 0px 16px 0px rgba(102, 102, 102, 0.3);
        transition: all 0.3s ease;
        font-family: 'Pretendard Variable', sans-serif;
    }

    .cta-button-primary:hover {
        background-color: #F0F0F0;
        transform: translateY(-2px);
        box-shadow: 0px 4px 20px 0px rgba(102, 102, 102, 0.4);
    }

    .hero-image {
        width: 189px;
        height: 172px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
}
