/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Arial", serif;
}
h1 {
    color: #404077;
    line-height: 100%;
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: normal;
    font-size: 48px;
    margin-bottom: 10px;
}
h2 {
    color: #e00;
    line-height: 100%;
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: normal;
    font-size: 32px;
    margin-bottom: 10px;
}
h3 {
    color: #333;
    line-height: 100%;
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: normal;
    font-size: 25px;
    margin-bottom: 10px;
}
p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
    margin-top: 1rem;
    margin: 0;
    font-size: 12pt;
    line-height: 110%;
    font-weight: normal;
}
@media screen and (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 25px;
    }
    h3 {
        font-size: 22px;
    }
}


.elegance-button {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #223344, #123456);
    color: white;
    padding: 12px 30px;
    margin: 10px 10px 0;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.elegance-button:hover {
    background: linear-gradient(135deg, #123456, #345678);
    transform: translateY(-3px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.elegance-button:active {
    transform: translateY(2px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.fade-in2s {
    opacity: 0;
    animation: fadeIn2 3s ease-in forwards;
    animation-delay: 0s;
}
.fade-in3s {
    opacity: 0;
    animation: fadeIn2 3s ease-in forwards;
    animation-delay: 1s;
}
@keyframes fadeIn2 {
    to {
        opacity: 1;
    }
}


.logo {
    max-width: 520px;
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
    .logo {
        max-width: 260px; /* Lebar maksimum untuk perangkat mobile */
    }
}
