        body {
            font-family: 'Press Start 2P', cursive;
            margin: 0;
            padding: 0;
            background-color: #111;
            color: #fff;
            line-height: 1.7;
        }
        header {
            color: white;
            padding: 25px 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            background-size: cover;
            background-position: center;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
        }
        header p {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            color: #eee;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }
        nav ul li {
            margin: 0 30px;
        }
        nav ul li a {
            color: #00ff00;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.5em;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        nav ul li a:hover {
            color: #ff00ff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.9);
        }
        .section {
            padding: 80px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .section h2 {
            font-size: 3em;
            color: #ffeb3b;
            margin-bottom: 30px;
            text-shadow: 0 0 12px rgba(255, 235, 59, 0.9);
        }
        .section p {
            font-size: 1.2em;
            margin-bottom: 30px;
            color: #ddd;
        }
        .section.alternate-bg {
            background-color: #1a1a1a;
        }
        .services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            margin-top: 50px;
        }
        .service-card {
            background-color: #222;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            width: 350px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid #444;
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            border-color: #00ffff;
        }
        .service-card img {
            width: 100%;
            max-height: 250px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .service-card h3 {
            font-size: 2em;
            color: #ff6700;
            margin-bottom: 15px;
            text-shadow: 0 0 8px rgba(255, 103, 0, 0.8);
        }
        .service-card p {
            font-size: 1.1em;
            color: #eee;
        }
        .contact-section {
            background: linear-gradient(to right, #d500f9, #4a148c);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        .contact-section h2 {
            font-size: 3em;
            margin-bottom: 30px;
            text-shadow: 0 0 12px rgba(213, 0, 249, 0.9);
        }
        .contact-section p {
            font-size: 1.2em;
            margin-bottom: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        .contact-button {
            display: inline-block;
            background-color: #00ffff;
            color: #111;
            padding: 15px 30px;
            text-decoration: none;
            font-size: 1.5em;
            font-weight: bold;
            border-radius: 10px;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 6px 10px rgba(0,0,0,0.3);
            animation: pulse 2s infinite;
        }
        .contact-button:hover {
            background-color: #00b8d4;
            transform: scale(1.05);
            box-shadow: 0 8px 15px rgba(0,0,0,0.4);
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        footer {
			font-family: Arial, Helvetica, sans-serif;
            background-color: #000;
            color: #fff;
            text-align: center;
            padding: 20px;
            font-size: 0.9em;
            border-top: 2px solid #333;
        }
        .form-container {
            max-width: 600px;
            margin: 50px auto;
            text-align: left;
            background-color: #222;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            border: 2px solid #444;
        }
        .form-container label {
            display: block;
            margin-top: 15px;
            font-weight: bold;
            color: #eee;
            font-size: 1.2em;
            text-shadow: 0 0 3px rgba(255,255,255,0.2);
        }
        .form-container input, .form-container textarea {
            width: 100%;
            padding: 12px;
            margin-top: 8px;
            border: 1px solid #555;
            border-radius: 8px;
            font-size: 1.1em;
            background-color: #333;
            color: #fff;
        }
        .form-container textarea {
            resize: vertical;
            min-height: 120px;
        }
        .form-container button {
            margin-top: 30px;
            padding: 15px 30px;
            background-color: #ffdb58;
            color: #111;
            border: none;
            border-radius: 10px;
            font-size: 1.2em;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }
        .form-container button:hover {
            background-color: #fdd835;
            transform: scale(1.03);
            box-shadow: 0 6px 10px rgba(0,0,0,0.3);
        }
        .form-container .form-title{
            text-align: center;
            font-size: 2.5em;
            color: #ff8800;
            margin-bottom: 30px;
            text-shadow: 0 0 10px rgba(255, 136, 0, 0.9);
        }
        #logo {
            max-width: 200px;
            height: auto;
            margin-bottom: 20px;
        }
        .three-column-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 50px;
        }
        .column {
            flex: 1;
            min-width: 300px;
            margin: 20px;
            padding: 30px;
            background-color: #222;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            border: 2px solid #444;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .column:hover {
            transform: translateY(-15px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            border-color: #00ffff;
        }
        .column h3 {
            font-size: 2em;
            color: #FF3399;
            margin-bottom: 15px;
            text-shadow: 0 0 8px rgba(255, 103, 0, 0.8);
            text-align: center;
        }
        .column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .column ul li {
            font-size: 1.1em;
            color: #eee;
            margin-bottom: 10px;
            text-align: center;
        }
        #about-us {
            text-align: center;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        #about-us h2 {
            font-size: 3em;
            color: #ffeb3b;
            margin-bottom: 30px;
            text-shadow: 0 0 12px rgba(255, 235, 59, 0.9);
        }
        #about-us p {
            font-size: 1.2em;
            color: #ddd;
            margin-bottom: 30px;
        }
        /* Responsive adjustments */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5em;
            }
            header p {
                font-size: 1em;
            }
            nav ul li {
                margin: 10px;
            }
            .section h2 {
                font-size: 2.5em;
            }
            .service-card {
                width: 100%;
                margin: 15px 0;
            }
            .contact-button {
                font-size: 1.2em;
                padding: 12px 25px;
            }
            .form-container {
                padding: 30px;
            }
            nav ul li a{
                font-size: 1.2em;
            }
            .three-column-container {
                flex-direction: column;
                align-items: center;
            }
            .column {
                min-width: 100%;
                margin: 20px 0;
            }
        }
        @media (max-width: 480px) {
            header h1 {
                font-size: 2em;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 10px 0;
            }
            .section {
                padding: 40px 10px;
            }
            .section h2 {
                font-size: 2em;
            }
            .contact-section h2{
                font-size: 2.5em;
            }
            .form-container {
                padding: 20px;
            }
            .form-container .form-title{
                font-size: 2em;
            }
            nav ul li a{
                font-size: 1em;
            }
            #logo {
                max-width: 150px;
            }