        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f8f8f8;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Container for form */
        .form-container {
            width: 100%;
            max-width: 800px;
            margin: 4rem auto;
            padding: 3rem;
            background-color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #5390bf, #4682B4);
        }

        /* Form Heading */
        .form-container h2 {
            text-align: center;
            color: #5390bf;
            margin-bottom: 2.5rem;
            font-size: 2.5rem;
            position: relative;
            font-weight: 600;
        }

        .form-container h2::after {
            content: "";
            width: 80px;
            height: 3px;
            background-color: #5390bf;
            display: block;
            margin: 1rem auto 0;
        }

        /* Form Fields */
        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-group label {
            font-weight: 600;
            color: #333;
            display: block;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            transition: all 0.3s ease;
            background-color: #f8f8f8;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #5390bf;
            outline: none;
            box-shadow: 0 0 0 3px rgba(83, 144, 191, 0.1);
            background-color: #ffffff;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
            min-height: 150px;
        }

        /* Submit Button */
        .form-group button {
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            background-color: #5390bf;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group button:hover {
            background-color: #4682B4;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(83, 144, 191, 0.3);
        }

        .form-group button:active {
            transform: translateY(0);
        }

        /* Footer alignment */
        footer {
            margin-top: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .form-container {
                margin: 2rem auto;
                padding: 2rem;
            }

            .form-container h2 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .form-group {
                margin-bottom: 1.5rem;
            }

            .form-group label {
                font-size: 1rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.8rem;
                font-size: 0.95rem;
            }

            .form-group button {
                padding: 0.8rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .form-container {
                margin: 1rem;
                padding: 1.5rem;
            }

            .form-container h2 {
                font-size: 1.8rem;
            }

            .form-group label {
                font-size: 0.95rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.7rem;
                font-size: 0.9rem;
            }

            .form-group button {
                padding: 0.7rem;
                font-size: 0.95rem;
            }
        }