body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Header */
header {
    background: white;
    padding: 10px 20px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav img {
    height: 50px; 
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav ul li a:hover {
    color: #8B0000; /* Dark Red */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh; 
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black; 
    z-index: 2;
}

.hero h1 {
    font-size: 3em; 
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.5em; 
    margin-bottom: 1em;
}

.order-button {
    display: inline-block;
    padding: 0.75em 1.5em;
    font-size: 1em;
    background-color: #8B0000; /* Dark Red */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.order-button:hover {
    background-color: #FF4500; /* Orange Red */
}

/* Products Section */
.products {
    padding: 40px 20px;
}

.products h2 {
    text-align: center;
    font-size: 2rem;
    color: #8B0000; /* Dark Red */
    margin-bottom: 40px;
}

.product-category {
    margin-bottom: 40px;
}

.product-category h3 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 20px;
    text-align: left;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%; 
    height: auto; 
    max-height: 150px; 
    object-fit: cover; 
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 1.2rem;
    color: black;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: white; /* Background color putih untuk container */
    position: relative; /* Menentukan posisi relative untuk .container */
}

/* Tentang Kami Section */
.tentang-kami {
    text-align: left;
    background-color: #8B0000; /* Warna merah untuk latar belakang Tentang Kami */
    color: white; /* Warna teks putih */
    padding: 20px; /* Padding untuk memberi ruang di dalam latar belakang merah */
    border-radius: 8px; /* Corner radius */
    margin-top: 20px; /* Jarak atas dari konten sebelumnya */
}

.tentang-kami .logo {
    height: 50px; /* Atur tinggi logo */
    width: auto; /* Atur lebar logo secara otomatis untuk mempertahankan aspek rasio */
    margin-bottom: 20px; /* Tambahkan margin bawah untuk memberi jarak antara logo dan teks */
}

/* Tentang Kami Heading */
.tentang-kami h2 {
    text-align: center; /* Text alignment untuk judul */
    color: white; /* Warna teks putih */
    margin-bottom: 10px; /* Jarak bawah */
}

/* Tentang Kami Paragraph */
.tentang-kami p {
    text-align: justify; /* Justifikasi teks */
    line-height: 1.6; /* Line height untuk keterbacaan */
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px; /* Adjust logo width */
}

/* Keunggulan Section */
.keunggulan {
    margin-top: 50px;
    background-color: white; /* Atur latar belakang putih untuk bagian Keunggulan */
    padding: 20px; /* Tambahkan padding agar konten tetap terpisah dengan baik */
    width: 100%; /* Menyesuaikan lebar untuk mengisi seluruh lebar layar */
}

.keunggulan h2 {
    text-align: center;
    color: #8B0000; /* Gunakan warna teks yang sesuai */
}

/* Individual Card Styling */
.card {
    background-color: #8B0000; /* Gunakan warna latar belakang merah yang berbeda */
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Card Container */
.card-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

/* Icon Styling */
.icon img {
    width: 50px; /* Adjust icon size */
}

/* Heading Styles */
h2, h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.2em;
}

.container {
    text-align: left;
}

hr {
    border: none; /* Hilangkan border default */
    height: 2px; /* Tinggi garis */
    background-color: #8B0000; /* Warna latar belakang (jika perlu) */
    margin: 20px 0; /* Margin atas dan bawah */
}