section {
    font-family: "Poppin", sans-serif;
    display: flex;
    justify-content: center;
    flex-direction: column; /* 세로 정렬 */
    text-align: center;      /* 텍스트 중앙 정렬 */
}

.image {
    margin-top: 80px;
    margin-bottom: 0;
}

.title {
    color: #000000;
    margin: 16px 0 16px 0;
}

.main {
    color: #6C727F;
    margin-top: 0;
    margin-bottom: 60px;
    margin: 0 auto; /* 가로 중앙 정렬 */
    overflow-wrap: break-word; /* 최신 브라우저 지원 */
    max-width: 500px; /* 최대 너비 500px */
    word-wrap: break-word; /* 긴 문장 줄바꿈 */
    overflow-wrap: anywhere; /* 최신 브라우저 최적화 */
}

.intro {
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    gap: 16px; /* 요소 사이 여백 */
}

.input {
    color: #6C727F;
    margin-top: 16px;
    margin-bottom: 16px;
}

.input input {
    width: 504px;
    height: 59px;
    text-align: center;
}

.subscribeButton button {
    width: 504px;
    height: 59px;
    text-align: center;
}

.ps {
    color: #6C727F;
}

.box {
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.03), 0px 8px 12px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    gap: 20px; /* 요소 사이 여백 */
}

