/* BASIC css start */
.company-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Noto Sans', sans-serif;
    color: #333;
}

.company-intro h1 {
    font-size: 48px; /* Å¸ÀÌÆ² Å©°Ô */
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.since {
    font-size: 28px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.company-details {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
}

.milestones {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ±Ù»çÇÑ ±×¸²ÀÚ È¿°ú */
    margin-top: 40px;
}

.milestones h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.milestones ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.milestones ul li {
    font-size: 18px;
    margin-bottom: 20px;
    width: 45%; /* ¹Ý¹Ý ³ª´²¼­ Å©°Ô º¸ÀÌµµ·Ï */
    padding: 10px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.milestones ul li strong {
    font-weight: 700;
    color: #76ac0a; /* °­Á¶ »ö»ó */
}

@media (max-width: 768px) {
    .milestones ul li {
        width: 100%; /* ¸ð¹ÙÀÏ ´ëÀÀ */
    }
}
/* BASIC css end */

