body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover container */
.container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 30px;
    margin: 0;
    color: #1e3c72;
    transition: color 0.3s;
}

header h1:hover {
    color: #2a5298;
}

header h2 {
    font-size: 22px;
    margin: 5px 0;
}

header h3 {
    font-size: 18px;
    margin: 5px 0;
}

header p {
    margin: 2px 0;
}

/* Content */
.content p {
    text-align: justify;
    text-indent: 40px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}

/* Hover efek paragraf */
.content p:hover {
    background: #f0f6ff;
    transform: scale(1.01);
}

/* Highlight nama */
.highlight {
    font-weight: bold;
    color: #1e3c72;
    transition: color 0.3s, background 0.3s;
    padding: 2px 6px;
    border-radius: 5px;
}

/* Hover highlight */
.highlight:hover {
    background: #1e3c72;
    color: #fff;
}

/* Footer */
footer {
    text-align: right;
    margin-top: 30px;
    font-weight: bold;
    color: #1e3c72;
    transition: color 0.3s;
}

footer:hover {
    color: #2a5298;
}