  body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f9;
        }
  
       /* Styles for the header */
        header {
            background-color: #3d84a8;
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        header h1 a {
            color: white;
            text-decoration: none;
            font-size: 2.5rem;
        }

        /* Navigation menu styles */
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #ff9800;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            margin-top: 20px;
        }
        .hamburger div {
            width: 30px;
            height: 5px;
            background-color: white;
        }
        .show {
            display: block;
        }

        h3 {
          text-align-last: center;
          color : blue;
        }

        .home {
            text-align: justify;
        }
        /* Styles for the main content */
        .content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .harga {
	    padding: 5px;
        }

        /* Styles for the form */
        form {
            margin-top: 20px;
        }

        input[type="text"],
        input[type="tel"],
        textarea {
            width: 95%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        input[type="submit"] {
            background-color: green;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }

        /* Styles for the footer */
        footer {
            background-color: #3d84a8;
            color: white;
            padding: 10px;
            text-align: center;
        }
        footer a {
            color: white;
            text-decoration: none;
        }
        
        #myBtn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 30px;
            z-index: 99;
            font-size: 18px;
            border: none;
            outline: none;
            background-color: #00000080;
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 4px;
        }

        #myBtn:hover {
            background-color: #555;
        }
        
        .kontak {
            margin: auto;
            text-align: justify;
            font-size: 20px;
            padding: 10px;
}

        .contact {
            font-weight: bold;
            color: #007bff;
        }

b {
	color: blue;
}

strong {
  color: red;
}

        /* Responsive styles for small screens */
@media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
            }
            .hamburger {
                display: flex;
            }
            nav.show {
                display: flex;
            }
        }
