
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }

        header {
            background: linear-gradient(90deg, #c50886, rgb(55, 0, 77));
            color: white;
            padding: 20px;
            text-align: center;
        }

        nav {
            background: hsl(290, 50%, 25%);
            padding: 10px;
            text-align: center;
        }

        nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: bold;
        }

        nav a:hover {
            color: #ffd700;
        }

        section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: auto;
        }

        #about img {
            max-width: 200px;
            display: block;
            margin: 20px auto;
        }

        #services img {
            width: 300px;
            height: 250px;
            object-fit: cover;
            scale: 1;
            margin: 10px;
            border-radius: 10px;
        }

        .service-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        th, td {
            border: 1px solid #333;
            padding: 12px;
            text-align: center;
        }

        th {
            background: #8000b3;
            color: white;
        }

        ul {
            list-style-type: square;
            margin-left: 20px;
        }

        form {
            background: #f8f8f8;
            padding: 20px;
            border-radius: 8px;
        }

        form input, form textarea, form button {
            display: block;
            width: 100%;
            margin-bottom: 15px;
            padding: 10px;
        }

        form button {
            background: rgb(36, 0, 66);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
        }

        form button:hover {
            background: hsl(303, 100%, 48%);
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 15px;
        }

        footer a {
            color: #00aced;
            margin: 0 10px;
            text-decoration: none;
        }

        /* Responsif */
        @media (max-width: 768px) {
            .service-gallery {
                flex-direction: column;
                align-items: center;
            }

            table, th, td {
                font-size: 14px;
            }
        }