.contact-section {
            width: 90%;
            max-width: 1200px;
            margin: 40px auto;
            font-family: 'Georgia', serif;
        }

        .page-title {
            text-align: center;
            font-size: 2rem;
            color: #333;
            margin-bottom: 5px;
        }

        .title-divider {
            width: 100%;
            height: 1px;
            background-color: #ddd;
            margin-bottom: 40px;
        }

        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        .form-container {
            flex: 1;
            min-width: 300px;
        }

        .info-container {
            width: 350px;
            text-align: center;
            font-family: sans-serif;
        }

        /* Form Controls Styling matching your border scheme */
        .form-group {
            margin-bottom: 15px;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #f5b041; /* Orange border scheme matching your design */
            border-radius: 2px;
            font-size: 1rem;
            box-sizing: border-box;
            outline: none;
            color: #555;
        }

        .form-input::placeholder {
            color: #999;
        }

        textarea.form-input {
            height: 150px;
            resize: vertical;
        }

        .char-limit {
            text-align: right;
            font-size: 0.75rem;
            color: #888;
            margin-top: 4px;
        }

        /* Captcha Elements Alignment */
        .captcha-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .captcha-box {
            background-color: #fcf3cf;
            border: 1px solid #f5b041;
            padding: 8px 15px;
            font-size: 1.4rem;
            font-weight: bold;
            color: #1e8449;
            letter-spacing: 4px;
            text-decoration: line-through;
            font-style: italic;
            user-select: none;
        }

        .captcha-input {
            max-width: 180px;
        }

        .refresh-btn {
            background: none;
            border: none;
            font-size: 1.4rem;
            color: #888;
            cursor: pointer;
            outline: none;
        }

        .refresh-btn:hover {
            color: #333;
        }

        /* Action Buttons styling rules */
        .btn-wrapper {
            text-align: center;
            margin-top: 30px;
        }

        .submit-btn {
            background-color: #333333;
            color: #ffffff;
            border: none;
            padding: 12px 40px;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 2px;
            transition: background 0.2s;
        }

        .submit-btn:hover {
            background-color: #555555;
        }

        /* Sidebar Info Elements Block text details */
        .info-block {
            margin-bottom: 35px;
        }

        .info-title {
            font-weight: bold;
            color: #333;
            letter-spacing: 1px;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .info-content {
            color: #566573;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Notification Banners status messages */
        .status-msg {
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 4px;
            text-align: center;
            font-weight: bold;
        }
        .error-msg { background-color: #f2d7d5; color: #922b21; }
        .success-msg { background-color: #d4efdf; color: #196f3d; }