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

        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background-color 0.3s ease;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 40px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #f0f0f0;
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #fff;
        }

        .page-header {
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../images/Music/GJV_1806_C_webp.webp');
            background-size: cover; /* Makes image cover the entire area */
            background-position: center; /* Centers the image */
            background-repeat: no-repeat; /* Prevents the image from repeating */
            background-color: #111; /* Fallback color if image doesn't load */
            margin-top: 70px;
            position: relative; /* For overlay if needed */
        }

        /* Add a semi-transparent overlay to ensure text remains readable */
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
            z-index: 1;
        }

        .page-header h1 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: 2px;
            position: relative;
            z-index: 2; /* This places the text above the overlay */
        }

        .contact-content {
            padding: 100px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-image {
            flex: 1;
            height: 600px;
            overflow: hidden;
            margin-right: 50px;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-form {
            flex: 1;
        }

        .contact-form h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-form p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #ccc;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 16px;
            color: #fff;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            background-color: #111;
            border: 1px solid #333;
            color: #fff;
            font-size: 16px;
            border-radius: 4px;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #fff;
            color: #000;
            border: none;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            cursor: pointer;
        }

        .submit-btn:hover {
            background-color: #ddd;
            transform: translateY(-3px);
        }

        /* Spinner Style */
        .spinner {
            border: 4px solid #f3f3f3; /* Light gray */
            border-top: 4px solid #3498db; /* Blue color */
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
            margin-left: 10px; /* Space between text and spinner */
            display: inline-block;
        }

        /* Animation for spinning the spinner */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


        .contact-info {
            margin-top: 50px;
        }

        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .contact-info p {
            margin-bottom: 10px;
            color: #ccc;
        }

        .contact-info a {
            color: #fff;
            text-decoration: none;
        }

        footer {
            background-color: #111;
            padding: 50px 0;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            flex: 1;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .footer-links {
            flex: 1;
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 20px;
        }

        .footer-links li {
            margin: 0 15px;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ddd;
        }

        .social-links {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            list-style: none;
            margin-bottom: 20px;
        }

        .social-links li {
            margin: 0 10px;
        }

        .social-links a {
            color: #fff;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #ddd;
        }

        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 20px;
            font-size: 14px;
            color: #888;
        }

        /* Form response message */
        .response-message {
            margin-top: 15px;
            padding: 10px;
            border-radius: 4px;
            font-weight: 500;
        }

        .success {
            background-color: rgba(39, 174, 96, 0.2);
            color: #27ae60;
        }

        .error {
            background-color: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
        }

        @media screen and (max-width: 768px) {
            .navbar {
                padding: 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .mobile-menu {
                display: block;
            }

            .contact-content {
                flex-direction: column;
                padding: 50px 20px;
            }

            .contact-image {
                margin-right: 0;
                margin-bottom: 30px;
                height: 300px;
            }

            .footer-content {
                flex-direction: column;
                padding: 0 20px;
            }

            .footer-logo, .footer-links, .social-links {
                justify-content: center;
                width: 100%;
            }
        }
