        /* Universal Box-Sizing for consistency */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        

        /* Overall container */
        .contact-section-container {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg-color);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            /* Default for larger screens */
            position: relative;
            overflow: hidden;
            color: var(--text-light);
        }

        /* Background animation */
        .contact-section-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 70% 30%, var(--accent-purple) 0%, transparent 30%),
                radial-gradient(circle at 30% 70%, var(--accent-blue) 0%, transparent 30%);
            opacity: 0.2;
            animation: backgroundMove 25s infinite alternate ease-in-out;
            z-index: 0;
            filter: blur(50px);
        }

        @keyframes backgroundMove {
            0% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(10%, 10%) scale(1.05);
            }

            100% {
                transform: translate(0, 0) scale(1);
            }
        }

        /* Main wrapper */
        .contact-content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1400px;
            width: 100%;
            padding: 30px;
            /* Default for larger screens */
            position: relative;
            z-index: 1;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 12px;
            /* Adding a subtle border-radius to the wrapper for better aesthetics */
        }

        /* Info and Form sections */
        .contact-info-section,
        .contact-form-section {
            flex: 1;
            min-width: 300px;
            /* This will be overridden by media queries for smaller screens */
            padding: 20px;
            /* Default for larger screens */
            transition: transform 0.3s ease;
        }

        .contact-info-section:hover,
        .contact-form-section:hover {
            transform: translateY(-5px);
        }

        .contact-info-section h2,
        .contact-form-section h2 {
            color: var(--primary-cta);
            font-size: 2.2rem;
            margin-bottom: 25px;
            text-shadow: 0 0 12px var(--glow-color);
            text-align: center;
        }

        .contact-info-section p,
        .contact-form-section p {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        .info-item strong {
            color: var(--primary-cta);
            min-width: 100px;
            margin-right: 10px;
        }

        .info-item span,
        .info-item a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-item a:hover {
            color: var(--primary-cta);
            text-decoration: underline;
        }

        .contact-info-section img {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        /* Form fields */
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 8px;
            display: block;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 15px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--card-border-dark);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1.05rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
            opacity: 0.7;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-cta);
            box-shadow: 0 0 10px var(--glow-color);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        /* Custom Dropdown */
        .custom-dropdown {
            position: relative;
            user-select: none;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--card-border-dark);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1.05rem;
            padding: 14px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .custom-dropdown:hover {
            border-color: var(--primary-cta);
        }

        .custom-selected::after {
            content: "▼";
            float: right;
            color: var(--text-muted);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .custom-dropdown.active .custom-selected::after {
            transform: rotate(180deg);
        }

        .custom-options {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            background: var(--dark-bg-color);
            border-radius: 8px;
            border: 1px solid var(--card-border-dark);
            max-height: 300px;
            overflow-y: auto;
            transition: max-height 0.4s ease, border-color 0.3s ease;
            z-index: 3;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
        }

        .custom-dropdown.active .custom-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .custom-option {
            padding: 12px 15px;
            background-color: var(--dark-bg-color);
            color: var(--text-light);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .custom-option:last-child {
            border-bottom: none;
        }

        .custom-option:hover {
            background: var(--accent-blue);
            transform: translateX(5px);
        }

        /* Button */
        .submit-button {
            background: linear-gradient(45deg, var(--primary-cta), var(--cta-hover));
            color: var(--text-light);
            padding: 15px 35px;
            border: none;
            border-radius: 10px;
            font-size: 1.25rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .submit-button:hover {
            background: linear-gradient(45deg, var(--cta-hover), var(--primary-cta));
            transform: translateY(-3px);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        /* Message Box */
        .message-box {
            margin-top: 25px;
            padding: 18px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            display: none;
            text-align: center;
            animation: fadeInOut 0.5s ease-in-out;
        }

        @keyframes fadeInOut {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message-box.success {
            background-color: var(--success-color);
            color: white;
        }

        .message-box.error {
            background-color: var(--error-color);
            color: white;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .contact-content-wrapper {
                flex-direction: column;
                padding: 15px;
                /* Reduced for tablets/smaller desktops */
                gap: 15px;
                /* Reduced gap */
            }

            .contact-info-section,
            .contact-form-section {
                min-width: unset;
                /* Allow sections to shrink fully */
                width: 100%;
                padding: 15px;
                /* Reduced inner padding for sections */
            }

            .contact-info-section h2,
            .contact-form-section h2 {
                font-size: 1.8rem;
            }

            .info-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .info-item strong {
                min-width: auto;
                margin-right: 0;
                margin-bottom: 5px;
                /* Adds space below the label for clarity */
            }

            .submit-button {
                font-size: 1.1rem;
                padding: 12px 25px;
            }
        }

        @media (max-width: 480px) {
            .contact-section-container {
                padding: 0;
                /* Set to 0 for very small screens to make content span full width */
            }

            .contact-content-wrapper {
                padding: 10px;
                /* Reduced padding for smaller mobiles to give content more room */
                gap: 10px;
                /* Reduced gap for smaller mobiles */
                border-radius: 0;
                /* Optional: Remove border-radius on wrapper for full-width look on very small screens */
            }

            .contact-info-section,
            .contact-form-section {
                padding: 8px;
                /* Further reduced inner padding for very small screens */
            }

            .contact-info-section h2,
            .contact-form-section h2 {
                font-size: 1.6rem;
            }

            .form-group input,
            .form-group textarea,
            .custom-dropdown {
                padding: 10px 12px;
                font-size: 0.95rem;
            }

            .custom-option {
                padding: 10px 12px;
                font-size: 0.95rem;
            }
        }