/* Mengatur gaya untuk seluruh dokumen */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f8f9fa;
    color: #333;
}

/* Mengatur gaya untuk judul utama */
h1 {
    color: #FF6700;
    text-align: center;
    margin-bottom: 10px;
}

/* Mengatur gaya untuk judul bagian */
h2 {
    color: #333;
    border-bottom: 2px solid #FF6700;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Mengatur gaya untuk paragraf pembuka */
p {
    text-align: justify;
    margin-bottom: 15px;
}

/* Mengatur gaya untuk daftar */
ul {
    list-style-type: square;
    margin-left: 20px;
    padding-left: 20px;
}

/* Mengatur gaya untuk tabel produk */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: center;
}

th {
    background-color: #FF6700;
    color: white;
}

td {
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

/* Mengatur gaya untuk catatan akhir */
hr {
    margin-top: 20px;
    border: none;
    border-top: 1px solid #ccc;
}

footer p {
    font-size: 0.9em;
    color: #555;
    text-align: center;
    margin-top: 20px;
}

/* Gaya untuk testimonial */
blockquote {
    font-style: italic;
    background-color: #f0f0f0;
    border-left: 5px solid #FF6700;
    margin: 20px 0;
    padding: 15px 20px;
    color: #555;
    position: relative;
}

blockquote p {
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0;
    color: #333;
}

blockquote footer {
    text-align: right;
    font-size: 0.9em;
    color: #888;
    margin-top: 10px;
}

/* Optional: Tambahan untuk efek kutipan */
/* blockquote::before {
    content: "“";
    font-size: 3em;
    color: #FF6700;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
} */
