* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'montextralight_demo';
    scroll-behavior: smooth;
}


body{
    background-color:#191919;
    
}

.main-container {
            background-color: #191919;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .contact-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
        }

        .contact-form-container {
            max-width: 500px;
            width: 100%;
        }

        .contact-title {
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 60px;
            color: #ffffff;
            text-align: center;
        }

        .form-group {
            margin-bottom: 40px;
            position: relative;
        }

        .form-label {
            display: block;
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-control {
            background: transparent;
            border: none;
            border-bottom: 1px solid #444;
            border-radius: 0;
            color: #ffffff;
            font-size: 1.1rem;
            width: 100%;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            background: transparent;
            border-color: #666;
            box-shadow: none;
            color: #ffffff;
        }

        .form-control::placeholder {
            color: #666;
        }

        .form-control.textarea-field {
            resize: vertical;
            min-height: 80px;
            padding-top: 12px;
        }

        .privacy-text {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 30px;
            text-align: center;
        }

        .privacy-text a {
            color: #888;
            text-decoration: underline;
        }

        .submit-btn {
            background-color: #ffffff;
            color: #000;
            border: none;
            padding: 12px 40px;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
            font-size: 12px;
        }

        .submit-btn:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }
