/* 기본 스타일 설정 */
body {
    font-size: 12pt;
    line-height: 16px;

    font-optical-sizing: auto;
    font-weight: 500;
    letter-spacing: -0.4px;

    background-color: #f0f0f2;
    color: #333;
}

.bd-navbar {
    padding: 0.75rem 0;
    background-color: transparent;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15), inset 0 -1px 0 rgba(255,255,255,0.15);
}

.header2 {
    /*background-color: #3A9CFC;*/
    background-image: linear-gradient(90deg, #6A61FD, #39A0FD);
    color: #fff;
    padding: 25px 15px 5px 15px;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2), inset 0 -1px 0 rgba(255,255,255,0.15);
}

.header2 h1 {
    margin: 0;
    font-size: 3.7rem;
}

.header2 h3 {
    font-weight: bold;
    margin-top: 10pt;
    font-size: 2.1rem;
    line-height: 48px;
}

.header2 #logoimg{
    width: 120px;
}

/* 섹션 스타일링 */
section {
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 1200px;
}

/* 섹션 타이틀 */
section h2 {
    color: #6e6e73;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 25pt;
}

/* 리스트 스타일 */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding:7px;
    font-size: 11pt;

}

/* 다운로드 링크 스타일 */
.download a {
    text-decoration: none;
    color: #d1e5ff;
}

/* 스크린샷 섹션 */
.screenshots ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 15px;
}

.screenshots img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.features li  {
    color: #6e6e73;
 }

.features li strong {
    color: #00B67A;
    /* color: #FB7C6A; */
    font-size: 12pt;
    font-weight: bold;
}

/* 푸터 스타일 */
footer {
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 50px 10px;
    font-size: 10pt;
}

.symbol-icon {
    width: 48px;
    height: 48px;
}

.btn2{display: inline-block; min-width: 68px; min-height: 34px; padding: 0 5px; font-family: 'Noto Sans KR', Helvetica, sans-serif; font-size: 14px; text-align: center; line-height: 1.4; border-radius: 0; cursor: pointer; transition: all .2s ease-in-out; border-radius: 50px;}
.btn2_box{position: relative; text-align: center; margin: 10px 0;}
.btn2_download{background: #6CC410; border: 1px solid #458700; color:#ffffff; font-size: 1.3em; padding: 15px 30px;font-family: 'Nanum Gothic', sans-serif;font-weight: 700;}
.btn2_download:hover{background: #5cb400; border: 1px solid #458700;font-family: 'Nanum Gothic', sans-serif;}


/* 반응형 디자인 */
@media screen and (max-width: 768px) {
    section {
        width: 98%;
        margin: 20px auto;
    }

    .header2 h3 {
        font-weight: normal;
        margin-top: 10pt;
        font-size: 1.5rem;
    }

    .screenshots ul {
        grid-template-columns: 1fr;
    }

    .header2 #logoimg{
        width: 100px;
    }

    .symbol-icon {
        width: 32px;
        height: 32px;
    }
}


/*
.icon-link:hover img {
    transform: scale(1.1);
}
*/