body {
    font-family: 'Pretendard', sans-serif;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
}

/* 배너 공통 */
.banner {
    background-color: #CFE5FF;
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

/* 버튼 공통 */
.button {
    color: var(--color-secondary-100);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--color-primary-100);
    display: inline-block;
    cursor: pointer;
}

.button:hover {
    background-color: var(--color-primary-200);
}

.button:active {
    background-color: var(--color-primary-300);
}

/*헤더*/
header {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #DFDFDF;
}

.header-inner {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-img {
    width: 153px;
    height: 51px;
}

.header-login {
    padding: 12px 23px;
    border-radius: 8px;
}

/*hero*/
.hero-banner {
    padding-top: 200px;
}

.hero-banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 60px;
}

.hero-cta {
    width: 357px;
    height: 56px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 746px;
    height: 340px;
}

/*features*/
.features-inner {
  padding: 138px 0 276px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 276px;
}

.feature-card {
    width: 988px;
    height: 444px;
    background-color: #FCFCFC;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.feature-label {
    font-size: 18px;
    font-weight: 800;
    line-height: 26px;
    color: var(--color-primary-100);
}

.feature-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.4;
    color: var(--color-secondary-700);
    letter-spacing: 0.02em;
    margin-top: 12px;
    margin-bottom: 24px;
}

.feature-desc {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: var(--color-secondary-700);
}

.feature-img {
    width: 579px;
    height: 444px;
}

.feature-content-right {
    text-align: right;
}

/*bottom*/
.bottom-banner {
    padding-top: 143px;
}

.bottom-banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    width: 746px;
    height: 397px;
}

/*footer*/
footer {
    height: 160px;
    background-color: var(--color-secondary-900);
}

.footer-inner {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
}

.footer-info {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-secondary-400);
}

.footer-links {
    display: flex;
    gap: 30px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-secondary-200);
}

.footer-sns {
    display: flex;
    gap: 12px;
}

@media screen and (max-width: 1919px) {
    .header-inner {
        padding: 0 200px;
    }
}
