*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background: #f4f4f4;
    color: #030303;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header{
    background: #003366;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    width: 60px;
    height: auto;
    margin-right: 15px;
}

.logo-text h2{
    font-size: 15px;
    margin: 0;
}

.logo-text p{
    font-size: 11px;
    margin: 0;
}

nav a{
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover{
    color: gold;
}

.hero{
    background: #1562af;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h2{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p{
    font-size: 20px;
}

.container{
    padding-left: 35px;
    padding-right: 35px;
}

.container h2{
    color: #003366;
    font-size: 33px;
    margin-bottom: 20px;
}

.container p,
.container li{
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 10px;
    line-height: 1.7;
}

.visi-misi{
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.box-visi,
.box-misi{
    background-color: #5f88bd;
    padding: 25px 35px;
    margin-bottom: 30px;
    border-radius: 3px;

    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;

    margin-left: 35px;
    margin-right: 35px;
}

.box-misi ul{
    padding-left: 20px;
    max-width: 800px;
}

.box-misi li{
    margin-bottom: 12px;
}

.card{
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3{
    color: #003366;
    margin-bottom: 10px;
}

form{
    margin-top: 18px;
}

input,
textarea{
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button{
    background: #003366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;

    position: relative;
    top: -5px;
}

button:hover{
    background: #0059b3;
}

footer{
    background: #003366;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
}