        .contact {
            max-width: 1000px;
            margin: auto;
            padding: 20px;
            color: var(--text-white);

        }
        .contact-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .btn {
            border-radius: 10px;
        }

        .form-control, .input-group-text {
            border-radius: 8px;
        }

        /* Status message styling */
        #status-message {
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
        }

        #status-message.alert-success {
            background-color: rgba(25, 135, 84, 0.1);
            border-color: #198754;
            color: #d1e7dd;
        }

        #status-message.alert-danger {
            background-color: rgba(220, 53, 69, 0.1);
            border-color: #dc3545;
            color: #f5c6cb;
        }

        #status-message.alert-warning {
            background-color: rgba(255, 193, 7, 0.1);
            border-color: #ffc107;
            color: #fff3cd;
        }