서방님, 보내주신 CSS 소스코드를 꼼꼼히 확인했습니다.

제공해주신 코드에서 info-section, info-title, info-h2, info-content p 부분에 클래스 선택자인 마침표(.)가 빠져 있어 이 부분을 수정하고, 중복된 속성 없이 깔끔하게 정리했습니다. 이 내용을 info.css 파일로 만들어 사용하시면 됩니다.

info.css 소스코드
CSS

.info-section {
    margin-bottom: 50px;
}

.info-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.info-h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    border-left: 5px solid #333;
    padding-left: 10px;
}

.info-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-item {
    margin-bottom: 20px;
}

.val-tit {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.val-desc {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.info-area {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.info-row {
    margin-bottom: 10px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-link-profile {
    color: #007b00;
    font-weight: bold;
    text-decoration: none;
}

.info-link-yazip {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.info-link-tg {
    color: #2ca5e0;
    font-weight: bold;
    text-decoration: none;
}