body {
    font-family: 'Noto Sans KR', Arial, sans-serif;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9fbfd;
}

.container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

/**/

.info-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #777;
}

.info-description {
    text-align: center;
}

.line {
    color: #6aaddf;
    border-bottom: 2px dotted #e6f3ff;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

/**/

ul {
    padding-left: 18px;
    list-style-type: none;
}

li {
    margin-bottom: 5px;
    padding-left: 5px;
    position: relative;
}

li::before {
    content: "✧";
    position: absolute;
    left: -15px;
    color: #ffd66a;
}

/**/

.services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #e6f3ff;
    transition: transform 0.3s ease;
}

.service-card:nth-child(1), .service-card:nth-child(4) {
    border-color: #ffe6b3;
}

.service-card:nth-child(2), .service-card:nth-child(5) {
    border-color: #d6edff;
}

.service-card:nth-child(3), .service-card:nth-child(6) {
    border-color: #e6e6e9;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 173, 223, 0.15);
}

.service-card:nth-child(1):hover, .service-card:nth-child(4):hover {
    box-shadow: 0 8px 20px rgba(255, 214, 106, 0.15);
}

.service-card:nth-child(2):hover, .service-card:nth-child(5):hover {
    box-shadow: 0 8px 20px rgba(106, 173, 223, 0.15);
}

.service-card:nth-child(3):hover, .service-card:nth-child(6):hover {
    box-shadow: 0 8px 20px rgba(135, 135, 135, 0.15);
}

.service-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #e6e6e9;
}

.service-card:nth-child(1) .service-title,
.service-card:nth-child(4) .service-title {
    color: #e6b800;
    border-bottom-color: #ffe6b3;
}

.service-card:nth-child(2) .service-title,
.service-card:nth-child(5) .service-title {
    color: #6aaddf;
    border-bottom-color: #d6edff;
}

.service-card:nth-child(3) .service-title,
.service-card:nth-child(6) .service-title {
    color: #878787;
    border-bottom-color: #e6e6e9;
}

/**/

.last-content {
    text-align: center;
    margin-top: 15px;
}

.text {
    margin: 2px;
    color: #666;
    font-size: small;
}

/**/

@media (max-width: 768px) {
    body {
        padding: 15px;
        font-size: small;
    }

    .container {
        padding: 20px;
    }

    .info-title {
        font-size: 1.2rem;
    }
}
