.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    font-family: 'Prompt', sans-serif;
    color: #333;
}

body.dark-mode .about-container,
body[data-theme="dark"] .about-container {
    color: #f5f5f5;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 80px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ffffff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/background3.JPG');
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 40vh;
    padding: 100px 20px 80px;
    display: flex;
    flex-direction: row;       
    justify-content: center;   
    align-items: center;       
    gap: 15vw;
}
.hero-section .hero-title,
.hero-section .hero-menu a {
    color: #ffffff; 
}

.hero-section .hero-menu a:hover {
    color: #f37021;
}

body.dark-mode .hero-section,
body[data-theme="dark"] .hero-section {
    border-bottom: 1px solid #333;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #111;
}

body.dark-mode .hero-title,
body[data-theme="dark"] .hero-title {
    color: #fff;
}

.hero-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.hero-menu a {
    font-size: 1.4rem;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-menu a i {
    font-size: 1rem;
    color: #f37021;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.hero-menu a:hover {
    color: #f37021;
    transform: translateX(10px);
}

.hero-menu a:hover i {
    opacity: 1;
    transform: translateX(0);
}

body.dark-mode .hero-menu a,
body[data-theme="dark"] .hero-menu a {
    color: #ddd;
}

body.dark-mode .hero-menu a:hover,
body[data-theme="dark"] .hero-menu a:hover {
    color: #f37021;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    align-items: center;
}

.reverse-layout {
    grid-template-columns: 1fr 1fr;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    border-left: 6px solid #f37021;
    padding-left: 18px;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #444;
}

body.dark-mode .section-subtitle,
body[data-theme="dark"] .section-subtitle {
    color: #ccc;
}

.mt-30 {
    margin-top: 30px;
}

.description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    color: #555;
}

body.dark-mode .description-text,
body[data-theme="dark"] .description-text {
    color: #bbb;
}

.image-box img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    object-fit: cover;
    display: block;
}

body.dark-mode .image-box img,
body[data-theme="dark"] .image-box img {
    opacity: 0.85;
}

.image-box img[src=""] {
    display: none;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.career-tags li {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #333;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    cursor: default;
}

.career-tags li:hover {
    background: #f37021;
    color: #fff;
    border-color: #f37021;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}

body.dark-mode .career-tags li,
body[data-theme="dark"] .career-tags li {
    background: #222;
    border-color: #333;
    color: #ddd;
}

body.dark-mode .career-tags li:hover,
body[data-theme="dark"] .career-tags li:hover {
    background: #f37021;
    color: #fff;
    border-color: #f37021;
}

.history-section {
    background: #fdfdfd;
    padding: 60px 80px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 80px auto 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 1px solid #f0f0f0;
}

body.dark-mode .history-section,
body[data-theme="dark"] .history-section {
    background: #1a1a1a;
    border-color: #2a2a2a;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.history-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #111;
}

body.dark-mode .history-title,
body[data-theme="dark"] .history-title {
    color: #fff;
}

.history-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

body.dark-mode .history-content p,
body[data-theme="dark"] .history-content p {
    color: #bbb;
}

@media (max-width: 992px) {
    .hero-section, .content-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reverse-layout .content-left {
        order: 2;
    }
    
    .reverse-layout .content-right {
        order: 1;
    }

    .history-section {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

