 
        /* Font faces */
        @font-face {
            font-family: 'Aeonik';
            src: url('../aeonik/AeonikTRIAL-Regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Aeonik';
            src: url('../aeonik/AeonikTRIAL-RegularItalic.otf') format('opentype');
            font-weight: normal;
            font-style: italic;
            font-display: swap;
        }

        @font-face {
            font-family: 'Aeonik';
            src: url('../aeonik/AeonikTRIAL-Light.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Aeonik';
            src: url('../aeonik/AeonikTRIAL-LightItalic.otf') format('opentype');
            font-weight: 300;
            font-style: italic;
            font-display: swap;
        }

        @font-face {
            font-family: 'Aeonik';
            src: url('../aeonik/AeonikTRIAL-Bold.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Aeonik';
            src: url('../aeonik/AeonikTRIAL-BoldItalic.otf') format('opentype');
            font-weight: bold;
            font-style: italic;
            font-display: swap;
        }
        
        body {
            font-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #1a1a1a;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 40px;
            padding-right: 40px;
        }


            .logo-container img {
                max-height: 40px;
            }

            .nav-button {
                border-radius: 50px;
                padding: 12px 30px;
                font-weight: 500;
            }

            .btn-login {
                border: 3px solid #000000;
                background-color: white;
                color: #000000;
                font-weight: bold;
            }

            .btn-signup {
                background-color: #000000;
                padding-top: 15px;
                color: white;
                border: none;
                font-weight: bold;
            }
        
        .navbar {
            position: relative;
            padding: 15px 0; 
        }
        
        /* Create the centered fading border effect */
        .navbar::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 95%;
            height: 1px;
            transform: translateX(-50%);
            background-image: linear-gradient( to right, rgba(229, 229, 229, 0) 0%, rgba(229, 229, 229, 0.5) 10%, rgba(229, 229, 229, 1) 20%, rgba(229, 229, 229, 1) 80%, rgba(229, 229, 229, 0.5) 90%, rgba(229, 229, 229, 0) 100% );
        }
        

        /* Create a centered border-bottom that extends from the middle */
            .navbar {
                position: relative;
                padding: 15px 0;
                border-bottom: none !important;
                /* Remove any existing border */
            }

            /* Create the border effect using ::after pseudo-element */
            .navbar::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 93%;
                /* Adjust this value to control how much of the width is covered */
                height: 1px;
                background-color: #e5e5e5;
                /* Light gray border color */
                transform: translateX(-50%);
                /* Center the border */
                /* Create gradient effect that fades out at both ends */
                background-image: linear-gradient( to right, transparent 0%, #e5e5e5 15%, #e5e5e5 85%, transparent 100% );
            }

            .navbar {
                position: relative;
                padding: 15px 0;
                border-bottom: none !important;
                /* Remove any existing border */
            }

            /* Create the centered fading border effect */
            .navbar::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 95%;
                /* Wide enough to cover most of the navbar but fade at edges */
                height: 1px;
                transform: translateX(-50%);
                /* Center the border */
                /* Create gradient effect that fades out at both ends */
                background-image: linear-gradient( to right, rgba(229, 229, 229, 0) 0%, rgba(229, 229, 229, 0.5) 10%, rgba(229, 229, 229, 1) 20%, rgba(229, 229, 229, 1) 80%, rgba(229, 229, 229, 0.5) 90%, rgba(229, 229, 229, 0) 100% );
            }

            /* Responsive adjustments */
            @media (max-width: 1200px) {
                .navbar::after {
                    width: 90%;
                    /* Slightly wider on medium screens */
                }
            }

            @media (max-width: 768px) {
                .navbar::after {
                    width: 95%;
                    /* Almost full width on small screens */
                }
            }

            /* For extra small screens, ensure the border doesn't get too thin */
            @media (max-width: 576px) {
                .navbar::after {
                    width: 98%;
                    background-image: linear-gradient( to right, rgba(229, 229, 229, 0) 0%, rgba(229, 229, 229, 1) 10%, rgba(229, 229, 229, 1) 90%, rgba(229, 229, 229, 0) 100% );
                }
            }
        .logo {
            height: 40px;
        }
        
        .contact-header {
            text-align: center;
            padding: 60px 0;
            font-family: 'Aeonik', sans-serif;
            font-weight: 700;
            font-size: 5rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-form-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        
        .form-container {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-title {
            font-family: 'Aeonik', sans-serif;
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 10px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .form-subtitle {
            margin-bottom: 30px;
            color: #4a4a4a;
            font-size: 18px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        .form-control {
            padding: 12px;
            border-radius: 4px;
            border: 1px solid #ced4da;
            font-family: 'Aeonik', sans-serif;
        }
        
        .dropdown-select {
            padding: 12px;
            border-radius: 4px;
            border: 1px solid #ced4da;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;
            font-family: 'Aeonik', sans-serif;
        }
        
        .submit-btn {
            background-color: #000000;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            margin-top: 10px;
            transition: all 0.3s ease;
            font-family: 'Aeonik', sans-serif;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .footer-section {
            background-color: #000000;
            color: #fff;
            padding: 40px 0;
        }
        
        .footer-logo {
            height: 60px;
            max-height: 60px;
            width: auto;
        }
        
        .auth-buttons .btn {
            margin-left: 10px;
        }
        
        .nav-button {
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-login {
            border: 2px solid #000000;
            background-color: white;
            color: #000000;
            font-weight: bold;
        }
        
        .btn-login:hover {
            background-color: rgba(0,0,0,0.05);
        }
        
        .btn-signup {
            background-color: #000000;
            color: white;
            border: 2px solid #000000;
            font-weight: bold;
        }
        
        .btn-signup:hover {
            background-color: #333;
        }
        
        textarea.form-control {
            min-height: 120px;
        }
        
        @media (max-width: 768px) {
            .contact-header {
                font-size: 2.5rem;
            }
            
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .form-title {
                font-size: 28px;
            }
            
            .form-subtitle {
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .nav-button {
                width: 100%;
                margin-right: 0 !important;
                margin-bottom: 10px;
            }
            
            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .auth-buttons .btn {
                margin-left: 0;
                margin-bottom: 10px;
            }
        }

         .container {
                /* Remove the fixed padding */
                padding-left: 0;
                padding-right: 0;
                /* Set up the centered container with max width */
                width: 100%;
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
                /* Add responsive padding */
                padding-left: 15px;
                padding-right: 15px;
            }

            /* Navbar container style - to match the image with border-bottom */
            .navbar .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            @media (min-width: 768px) {
                .container {
                    padding-left: 30px;
                    padding-right: 30px;
                }

                .navbar .container {
                    padding-left: 30px;
                    padding-right: 30px;
                }
            }

             .navbar .container {
                padding-left: 20px;
                padding-right: 20px;
            }

             @media (min-width: 1200px) {
                .container {
                    max-width: 1200px;
                }

                .navbar .container {
                    padding-left: 50px;
                    padding-right: 50px;
                }
            }

            
/* Button styling */
.nav-button {
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login {
    border: 2px solid #000000;
    background-color: white;
    color: #000000;
}

.btn-signup {
    background-color: #000000;
    color: white;
    border: 2px solid #000000;
}

.btn-login:hover {
    background-color: rgba(0,0,0,0.05);
}

.btn-signup:hover {
    background-color: #333;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    /* Center the auth buttons on mobile */
    #navbarContent .d-flex {
        justify-content: center;
        width: 100%;
    }
    
    /* Make buttons slightly larger on touch devices */
    .nav-button {
        padding: 10px 26px;
        margin-bottom: 10px;
    }
    
    /* Add space between toggler and logo */
    .navbar-toggler {
        margin-left: auto;
        margin-right: 0;
    }
    
    /* Custom toggle icon size */
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .nav-button {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
    
    #navbarContent .d-flex {
        flex-direction: column;
    }
}

.auth-buttons .btn {
            margin-left: 10px;
        }

        .footer-links {
    display: flex;
    font-size: 14px;
    gap: 20px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
} 