*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: poppins,sans-serif;
    text-decoration: none;
}
body{
    overflow-x: hidden;
    background-color: #f5f5f5;
}
header{
    width: 100%;
    background: #222;
    padding: 15px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.wrapper{
    width:1280px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    display: none; /* Sembunyikan logo */
}
.logo i{
    height: 45px;
    width:45px;
    background-color: #007ced;
    border-radius: 50%;
    color:#fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px;
    margin-right: 5px;
    text-align: center;
}
.logo .logo-text{
    font-size: 24px;
    font-weight: 500;
    color:#fff;
}
nav{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
nav .navlinks{
    list-style-type: none;
    display: flex;
    justify-content: center;
}
nav .navlinks li{
    display: inline-block;
    margin: 0 5px;
}
nav .navlinks li a{
    color:#e5e5e5;
    font-size: 16px;
    transition: 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
}
nav .navlinks li a:hover{
    color: #007ced;
    background-color: rgba(0, 124, 237, 0.1);
}
.hero-header{
    width:100%;
    height: 100%;
    min-height: 100vh;
    background: #222;
    margin-top: 80px; /* Kurangi margin untuk header yang lebih kecil */
}
.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 4rem;
}
.container .hero-pic{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #444;
    box-shadow: 5px 7px 25px rgba(0,0,0,0.5);
}
.hero-pic img{
    height: 100%;
    width:100%;
    transition: 0.5s;
    object-fit: cover;
}
.hero-pic img:hover{
    transform: scale(1.2);
}
.hero-text{
    max-width: 500px;
    display: flex;
    flex-direction: column;
}
.hero-text h5{
    color:#e5e5e5;
    font-size: 14px;
}
.hero-text h5 span{
    color:#007ced;
    font-size: 16px;
}
.hero-text h1{
    color: #007ced;
    font-size: 3rem;
}
.hero-text p{
    color:#e5e5e5;
    margin: 15px 0;
}
.btn-group{
    margin:45px 0;
}
.btn-group .btn{
    border-color: #e5e5e5;
    color:#fff;
    background-color: transparent;
    padding: 12px 25px;
    margin: 5px 5px;
    border-radius: 30px;
    border:2px solid #e5e5e5;
    box-shadow:  0 10px 10px -8px rgb(0 0 0 / 78%);
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    color: #fff !important;
}
.btn-group .btn:hover{
    background-color: #007ced;
    border-color: #007ced;
    color: #fff !important;
}
.btn.active{
    border-color: #007ced;
    background-color: #007ced;
    color: #fff !important;
}
.hero-text .social{
    margin-top: 20px;
}
.hero-text .social a{
    display: inline-block;
    margin-right: 15px;
}
.hero-text .social i{
    color: #e5e5e5;
    font-size: 24px;
    transition: 0.5s;
}
.hero-text .social i:hover{
    color:#007ced;
    transform: rotate(360deg);
}

/* Section styling */
.section {
    padding: 100px 0;
    background-color: #fff;
}

.section h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.section .content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.8;
}

.section .content p {
    margin: 20px 0;
    color: #555;
    font-size: 18px;
}

.section .content a {
    color: #007ced;
    font-weight: bold;
}

/* Content area styling */
.content-area {
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
    padding: 20px 0;
}

/* Wrapper styling for content pages */
.content-wrapper {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1000px;
}

.content-wrapper p {
    color: #555;
    margin: 20px 0;
    line-height: 1.8;
    font-size: 18px;
}

.content-wrapper h2 {
    color: #222;
    margin-top: 30px;
}

.content-wrapper h3 {
    color: #333;
    margin-top: 25px;
}

.content-wrapper ul, .content-wrapper ol {
    margin: 15px 0;
    padding-left: 20px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

/* Responsive design untuk tampilan mobile */
@media(max-width:768px)
{
    .wrapper{
        flex-direction: column;
        padding: 10px 20px;
    }

    nav{
        width: 100%;
        margin-top: 10px;
    }

    nav .navlinks{
        flex-wrap: wrap;
    }

    nav .navlinks li{
        margin: 3px;
    }

    .hero-header{
        margin-top: 140px; /* Tambahkan margin untuk mengakomodasi navigasi yang berada di bawah */
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section .content {
        padding: 15px;
    }

    .section .content p {
        font-size: 16px;
    }

    .container {
        flex-direction: column;
        padding-top: 2rem;
    }

    .hero-pic {
        margin-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
}

@media(max-width:480px)
{
    nav .navlinks li a{
        padding: 6px 8px;
        font-size: 14px;
    }

    .wrapper{
        padding: 10px 10px;
    }

    .section {
        padding: 40px 0;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 16px;
    }

    .btn-group .btn{
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Memastikan halaman tidak bisa digeser ke samping */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Mencegah scroll vertikal yang tidak perlu */
.hero-header {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
