.wine_search_page {
    margin-top: 20px;
}

.wine_search_page {
    background: #ffffff;
    min-height: 100vh;
    padding: 0 30px;
    padding-bottom: 80px;
}

.faq-container {
    max-width: 660px;
    margin: auto;
    padding-top: 195px;
}

.faq-title {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.4;
    color: #252525;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.faq-header h3 {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #252525;
    font-weight: 800;
}

.faq-btn {
    background: #ff6b6b;
    /* border: none; */
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 1.4;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
.next_icon{
    width: 24px;
    height: 24px;
}
.faq-box {
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

/* .faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
} */
.faq-item {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 8px;
}

.faq-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 20px;
    font-size: 22px;
    letter-spacing: -1px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #252525;
    cursor: pointer;
    font-weight: 400;
}

.faq-question .faq-icon {
    width: 33px;
    height: 34px;
}

.faq-answer {
    padding: 0 52px 14px 52px;
    font-size: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #757575;
    line-height: 1.5;
}

.faq-item.active .faq-question .highlight {
    color: #e64545;
    font-weight: 500;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    margin-left: 32px;
}

.faq-question .arrow {
    width: 26px;
    height: 15px;
    margin-left: auto;
    transition: transform 0.2s ease;
}

/*  */

.notice-container {
    max-width: 660px;
    margin: auto;
    padding-top: 60px;
}

.card-grid {
    margin-top: 60px;
    display: flex;
    gap: 20px;
}

.card {
    flex: 1;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card .review {
    width: 87px;
    height: 80px;
    margin-bottom: 10px;
}

.card .event {
    width: 106px;
    height: 88px;
    margin-bottom: 20px;
}

.card p {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #252525;
    font-weight: 800;
    margin: 0;
}