table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
}
th,
td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    color: #222;
}
th {
    background-color: #222;
    color: #ffffff;
    font-weight: bold;
}
tr:nth-child(even) {
    background-color: #f8f8f8;
}
tr:hover {
    background-color: #f1f1f1;
}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}
.note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #ffffff;
    margin-bottom: 50px;
}

.pricing-cards {
    display: flex; /* 카드들을 가로로 나열 */
    flex-wrap: wrap; /* 화면이 작아지면 자동으로 줄 바꿈 */
    gap: 20px; /* 카드 사이의 간격 */
    justify-content: center; /* 카드들을 중앙 정렬 */
    margin-bottom: 40px;
}
.card {
    background-color: #ede8e4;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px; /* 카드 너비 고정 */
    text-align: center;
    display: flex; /* 내부 컨텐츠 정렬을 위해 flex 사용 */
    flex-direction: column; /* 세로 정렬 */
    justify-content: space-between; /* 내용 상하 분리 */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: max-content;
}
.card:hover {
    transform: translateY(-5px); /* 호버 시 살짝 위로 */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.card h3 {
    color: #007bff;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}
.card .price {
    font-size: 2.2em;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}
.card .price small {
    font-size: 0.6em;
    font-weight: normal;
    color: #555;
}
.card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1; /* ul이 사용 가능한 공간을 채우도록 */
}
.card ul li {
    margin-bottom: 10px;
    color: #555;
}
.card:nth-child(3) {
    min-height: unset;
}
.card ul li::before {
    content: "◆"; /* 체크마크 아이콘 */
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -0.5em;
    margin-right: 1em;
}

/* 추가 페이지 및 참고 섹션 (테이블 형식 유지) */
.additional-info {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: 25px auto;
    font-size: 1em;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden; /* 모서리 둥글게 처리 */
}
.additional-info th,
.additional-info td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: left;
}
.additional-info th {
    background-color: #007bff;
    color: #ffffff;
    font-weight: bold;
}
.additional-info tr:nth-child(even) {
    background-color: #f8f8f8;
}

/* 문의하기 버튼 */
.contact-button-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}
.contact-button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.contact-button:hover {
    background-color: #0056b3;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column; /* 작은 화면에서는 카드를 세로로 정렬 */
        align-items: center; /* 세로 정렬 시 가운데 */
    }
    .card {
        width: 90%; /* 작은 화면에서 카드 너비 조정 */
        max-width: 400px;
    }
    .additional-info {
        width: 95%;
    }
}
