      /* Reset and Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    header {
        background-color: #2c3e50;
        color: white;
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .logo span {
        color: #e67e22;
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 25px;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        font-size: 16px;
    }

    nav ul li a:hover {
        color: #e67e22;
    }

    .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }

    /*Isi From*/

        .bungkus {
            background:  url('foto/depan.jpg') no-repeat center center/cover;
            min-height: 100vh;

        }

        .container1 {
            padding-top: 50px;
            padding-bottom: 30px;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-container {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        h1 {
            text-align: center;
            color: #333;
            margin-bottom: 10px;
        }

        .subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        input, textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .btn-group {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        button {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit {
            background: #667eea;
            color: white;
        }

        .btn-submit:hover {
            background: #5a6fd8;
            transform: translateY(-2px);
        }

        .btn-view {
            background: #28a745;
            color: white;
        }

        .btn-view:hover {
            background: #218838;
            transform: translateY(-2px);
        }

        .btn-clear {
            background: #f8f9fa;
            color: #666;
            border: 2px solid #e1e5e9;
        }

        .btn-clear:hover {
            background: #e9ecef;
        }

        .message {
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }

        .success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

     /* Footer */
    footer {
        background-color: #2c3e50;
        color: white;
        padding: 40px 0 20px;
        text-align: center;
        margin-top: 60px;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 20px;
        padding: 0 15px;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        font-weight: 600;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: #e67e22;
        bottom: 0;
        left: 0;
    }

    .footer-section p, .footer-section a {
        color: #bdc3c7;
        margin-bottom: 10px;
        display: block;
        text-decoration: none;
        transition: color 0.3s;
        font-weight: 400;
    }

    .footer-section a:hover {
        color: #e67e22;
    }

    .social-icons a {
        display: inline-block;
        margin-right: 15px;
        font-size: 18px;
    }

    .copyright {
        border-top: 1px solid #34495e;
        padding-top: 20px;
        font-size: 14px;
        color: #bdc3c7;
        font-weight: 300;
    }
   


    /* Responsive Styles */
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        nav ul {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #2c3e50;
            text-align: center;
            padding: 20px 0;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        nav ul.show {
            display: flex;
        }

        nav ul li {
            margin: 10px 0;
        }

        .page-header h1 {
            font-size: 32px;
        }

        .page-header p {
            font-size: 16px;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .page-header {
            padding: 60px 20px;
        }

        .page-header h1 {
            font-size: 28px;
        }

        .service-title {
            font-size: 22px;
        }

        .service-content {
            padding: 20px;
        }
    }