/* 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: 120px 20px;
    max-width: 100%;
    box-sizing: border-box;
    margin-top:79px;
}

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

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

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

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

.cta-button-primary {
    width: 360px;
    background-color: #FFFFFF;
    color: #101010;
    font-size: 28px;
    font-weight: 700;
    padding: 16px 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;
    margin-top: 30px;
}

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