
        body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #fff;
            background: linear-gradient(135deg, #000, #333, #555);
            overflow-x: hidden;
			padding:20px;
        }

        nav {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: #222;
            padding: 10px 20px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        nav a {
            text-decoration: none;
            color: #FFA500;
            font-size: 18px;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #fff;
        }

        section {
            padding: 100px 20px;
            text-align: center;
        }

        header {
            background: linear-gradient(135deg, #FFA500, #222);
            color: #fff;
            padding: 120px 20px;
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
        }

        header h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
        }

        header p {
            font-size: 1.3em;
            margin-bottom: 40px;
        }

        header a {
            padding: 15px 30px;
            background: #000;
            color: #FFA500;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            transition: background 0.3s;
        }

        header a:hover {
            background: #FFA500;
            color: #000;
        }

        .services {
            background: #333;
            padding-bottom: 60px;
        }

        .services h2 {
            color: #FFA500;
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .services p {
            font-size: 1.1em;
            margin-bottom: 40px;
            color: #ddd;
        }

        .service-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .service-item {
            width: 100%;
            max-width: 300px;
            margin: 20px;
            padding: 20px;
            background: #000;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
            text-align: left;
        }

        .service-item h3 {
            color: #FFA500;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        .service-item p {
            font-size: 1em;
            color: #ddd;
        }

        .contact {
            background: linear-gradient(135deg, #444, #000);
            padding-bottom: 60px;
        }

        .contact h2 {
            font-size: 2.5em;
            color: #FFA500;
            margin-bottom: 20px;
        }

        .contact p {
            font-size: 1.1em;
            color: #ddd;
            margin-bottom: 40px;
        }

        .contact form {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact input, .contact textarea {
            width: 100%;
            margin-bottom: 15px;
            padding: 15px;
            border: 2px solid #FFA500;
            border-radius: 5px;
            font-size: 1em;
        }

        .contact button {
            padding: 15px 30px;
            background: #000;
            color: #FFA500;
            border: 2px solid #FFA500;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }

        .contact button:hover {
            background: #FFA500;
            color: #000;
        }
		ol { padding-left: 20px;}
		ol ol {
			margin-left:0px;
			margin-bottom:20px;
		}

        footer {
            text-align: center;
            padding: 20px;
            background: #222;
        }

        footer p {
            margin: 0;
            font-size: 0.9em;
            color: #FFA500;
        }

        @media (min-width: 768px) {
            .service-item {
                width: calc(33.333% - 40px);
            }
        }

