/* AboutUs CSS */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Make sure the container doesn't create conflicts with navbar */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

.judul {
    text-align: center;
    margin-bottom: 30px;
}

.judul h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.judul h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #977a59;
}

.isi-judul {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 60px;
    color: #555;
}

.isi-judul p, .isi-kedua p {
    margin: 8px 0;
}

/* Make sure these don't conflict with navbar styles */
.isi-judul span, .isi-kedua span {
    font-weight: bold;
    color: #977a59;
}

.aja {
    font-weight: bold;
    color: #333;
}

.judul-kedua {
    text-align: center;
    margin: 40px 0 30px;
}

.judul-kedua h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.judul-kedua h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #977a59;
}

.isi-kedua {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #555;
}

.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #977a59;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #7d6548;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    text-align: center;
    margin-top: 40px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 60px 15px 30px;
    }
    
    .judul h1, .judul-kedua h1 {
        font-size: 1.8rem;
    }
    
    .isi-judul, .isi-kedua {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    .judul h1, .judul-kedua h1 {
        font-size: 1.5rem;
    }
    
    .isi-judul, .isi-kedua {
        font-size: 0.9rem;
    }
}