 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Geomanist', Arial, sans-serif;
        }

        /* Back Button Styles */
        .back-button {
            position: fixed;
            top: 15px;
            left: 15px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid white;
            padding: 10px 15px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .back-button:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .back-button i {
            font-size: 16px;
        }

        body {
            background-image: url("/assets/images/backgroud-full.png");
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 20px 0;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .contact-container {
            max-width: 800px;
            width: 90%;
            margin: auto;
            padding: 40px;
            backdrop-filter: blur(5px);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .contact-header {
            text-align: left;
            margin-bottom: 30px;
        }

        .contact-header h1 {
            font-size: 36px;
            color: white;
            margin-bottom: 10px;
        }

        .contact-header p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 16px;
            margin-bottom: 8px;
            color: white;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 5px;
            font-size: 16px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: white;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-container {
            display: flex;
            justify-content: flex-end;
            margin-top: 10px;
        }

        .submit-btn {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Logo styling */
        .contact-logo {
            max-width: 140px;
            height: auto;
            margin-bottom: 20px;
            display: block;
        }

        .contact-info {
            margin-top: 30px;
            padding-top: 30px;
            /*border-top: 1px solid rgba(255, 255, 255, 0.2);*/
        }

        .contact-info h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: white;
        }

        .address {
            margin-bottom: 20px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }

        .address h3 {
            font-size: 18px;
            color: white;
            margin-bottom: 10px;
        }

        .contact-details {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .contact-details a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #ddd;
            text-decoration: none;
        }

        .contact-details i {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-details .separator {
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            body {
                background-attachment: scroll;
                padding: 10px 0;
            }

            .back-button {
                top: 10px;
                left: 10px;
                padding: 8px 12px;
                font-size: 0;
                /* Hide text on mobile */
                transition: transform 0.3s ease, opacity 0.3s ease;
            }

            .back-button i {
                font-size: 14px;
            }

            .back-button.hide {
                transform: translateY(-100px);
                opacity: 0;
            }

            .contact-container {
                padding: 30px 20px;
                margin-top: 60px;
                margin-bottom: 10px;
                width: 95%;
            }

            .contact-header h1 {
                font-size: 28px;
            }

            .contact-header p {
                font-size: 14px;
            }

            .contact-logo {
                max-width: 105px;
            }

            .contact-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .contact-details .separator {
                display: none;
            }
        }

        ::placeholder {
            color: rgba(255, 255, 255, 0.6);
            opacity: 1;
        }

        :-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        ::-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.6);
        }