  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', Arial, sans-serif;
        }

        body {
            background-color: #2e2e2e;
            min-height: 100vh;
            position: relative;
        }

        /* Header Styles */
        .nav__container {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav__logo {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .nav__logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .nav__logo-img:hover {
            transform: scale(1.05);
        }

        .nav__list {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 1001;
        }

        .nav__item {
            position: relative;
        }

        .nav__link {
            text-decoration: none;
            color: #ffffff;
            font-size: 1rem;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav__link:hover {
            color: #4a90e2;
        }

        .dropdown__wrapper {
            position: relative;
        }

        .dropdown__toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown__menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .dropdown__wrapper:hover .dropdown__menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown__item {
            padding: 12px 20px;
            display: block;
            text-decoration: none;
            color: #ffffff;
            font-size: 0.95rem;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .dropdown__item:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #4a90e2;
        }

        .menu__toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #ffffff;
            z-index: 1001;
        }

        /* Contact Form Styles */
        .content__section {
            width: 100%;
            background: #2e2e2e;
            padding: 100px 20px 60px; /* Adjusted for header height */
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            z-index: 1; /* Below header */
        }

        .content__container {
            max-width: 800px;
            text-align: center;
            color: #ffffff;
        }

        .content__title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .content__text {
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 35px;
            color: #d3d3d3;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .form__wrapper {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 35px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            animation: fadeIn 1s ease-out;
            transition: transform 0.3s ease;
            pointer-events: auto;
            z-index: 10; /* Ensure form is clickable */
        }

        .form__wrapper:hover {
            transform: translateY(-5px);
        }

        .form__group {
            margin-bottom: 25px;
        }

        .form__label {
            display: block;
            font-size: 0.95rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 10px;
            text-align: left;
            letter-spacing: 0.5px;
        }

        .form__input,
        .form__textarea,
        .form__select {
            width: 100%;
            padding: 14px;
            background: rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 8px;
            color: #ffffff;
            font-size: 1rem;
            transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
            pointer-events: auto;
            user-select: text;
            z-index: 10;
        }

        .form__input:focus,
        .form__textarea:focus,
        .form__select:focus {
            outline: none;
            border-color: #4a90e2;
            background: rgba(0, 0, 0, 0.18);
            box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
        }

        .form__textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form__select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            cursor: pointer;
        }

        .form__button {
            display: block;
            width: 100%;
            padding: 14px;
            background: linear-gradient(45deg, #b60000, #000102);
            border: none;
            border-radius: 8px;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            pointer-events: auto;
            z-index: 10;
        }

        .form__button:hover {
            background: linear-gradient(45deg, #000000, #292929);
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
        }

        .form__button:active {
            transform: scale(0.98);
        }

        .form__button.submitting::after {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid #ffffff;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .form__message {
            display: none;
            margin-top: 20px;
            padding: 12px;
            border-radius: 8px;
            font-size: 0.9rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }

        .form__message--success {
            background: rgba(72, 187, 120, 0.2);
            color: #48bb78;
        }

        .form__message--success::before {
            content: '✔';
            font-size: 1rem;
        }

        .form__message--error {
            background: rgba(245, 101, 101, 0.2);
            color: #f56565;
        }

        .form__message--error::before {
            content: '✖';
            font-size: 1rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Header */
        @media (max-width: 768px) {
            .nav__list {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 1001;
            }

            .nav__list.active {
                transform: translateX(0);
            }

            .nav__item {
                width: 100%;
            }

            .dropdown__menu {
                position: static;
                width: 100%;
                background: transparent;
                border: none;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }

            .dropdown__wrapper.active .dropdown__menu {
                display: block;
            }

            .menu__toggle {
                display: block;
            }

            .nav__logo-img {
                height: 32px;
            }
        }

        @media (max-width: 480px) {
            .nav__container {
                padding: 10px 20px;
            }

            .nav__logo-img {
                height: 28px;
            }

            .nav__link {
                font-size: 0.9rem;
            }
        }

        /* Responsive Form */
        @media (max-width: 768px) {
            .content__title {
                font-size: 2.2rem;
            }

            .content__text {
                font-size: 1rem;
            }

            .form__wrapper {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .content__title {
                font-size: 1.8rem;
            }

            .content__text {
                font-size: 0.9rem;
            }

            .form__wrapper {
                padding: 20px;
            }

            .form__input,
            .form__textarea,
            .form__select,
            .form__button {
                font-size: 0.9rem;
            }
        }