


/* Reset Basic*/ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", "Microsoft YaHei", sans-serif;
}


/* container page  */

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




/* Navigation Bar Style */


.nav {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.logo {
    font-size: 24px;
    font-weight: bold;
    color: #f8c400;
}



.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}




.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f85c08ee;
}




/* language Switch style */


.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-switch a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all 0.3s;
}




.lang-switch a:hover, .lang-switch a.active {
    background-color: #f8c400;
    color: #1a1a1a;
    border-color: #f8c400;
}




/* style Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 40px 0;
    margin-top: 50px;
}




.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}



.footer-col {
    width: 22%;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: #f8c400;
    font-size: 18px;
    margin-bottom: 15px;
}



.footer-col p, .footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #f8c400;
}



.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
}



/* Style Title */
.page-title {
    font-size: 32px;
    color: #1a1a1a;
    margin: 30px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8c400;
}




/* Image Container Style */




.img-container {
    margin: 20px 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.img-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.img-container img:hover {
    transform: scale(1.02);
}

.img-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}







/* Text Paragraph Style */
.text-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}