        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #000;
            color: #fff;
            padding: 20px;
            line-height: 1.6;
            animation: fadeIn 1.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        header {
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(135deg, #000, #333);
            animation: slideIn 1.5s ease-in;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-100px);
            }
            to {
                transform: translateY(0);
            }
        }

        header h1 {
            font-size: 4rem;
            color: #fff;
            text-shadow: 0 0 20px #fff;
        }

        header p {
            font-size: 1.5rem;
        }

        nav {
            text-align: center;
            background: #080808;
            padding: 20px;
            border-bottom: 2px solid #050505;
        }

        nav ul {
            list-style: none;
        }

        nav ul li {
            display: inline;
            margin: 0 20px;
        }

        nav ul li a {
            color: #c0bcbc;
            text-decoration: none;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #fff;
        }

        section {
            padding: 100px 20px;
            text-align: center;
            border-bottom: 2px solid #818181;
        }

        section h2 {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 20px;
        }

        section p {
            font-size: 1.5rem;
        }

        .container {
            background: #8d8d8d;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
            max-width: 700px;
            margin: 0 auto;
        }

        form {
            animation: fadeIn 2s ease-in;
        }

        label, input, textarea {
            display: block;
            width: 100%;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        input, textarea {
            padding: 10px;
            background: #050505;
            border: 2px solid #74727270;
            color: #fff;
            border-radius: 8px;
        }

        input[type="submit"] {
            background: #eceaea;
            color: #030303;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        input[type="submit"]:hover {
            background: #333;
        }

        footer {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, #000, #333);
        }

        footer p, footer a {
            font-size: 1.5rem;
            color: #a09e9e;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }