:root {
            --brand-green: #344e41;
            --brand-light: #f5f5f1;
            --card-radius: 24px;
            --accent-green: #a3b18a;
        }

        body {
            background-color: #e7e7e0;
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-card {
            background-color: var(--brand-light);
            width: 100%;
            max-width: 1024px;
            border-radius: var(--card-radius);
            display: flex;
            flex-direction: column;
            padding: 15px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            min-height: 600px;
        }

        @media (min-width: 992px) {
            .main-card {
                flex-direction: row;
                padding: 12px;
            }

            .sidebar {
                width: 360px;
            }
        }

        /* Sidebar Styling (Q&A Section) */
        .sidebar {
            background-color: var(--brand-green);
            background-image: url('https://www.transparenttextures.com/patterns/leaf.png');
            background-blend-mode: overlay;
            color: white;
            border-radius: 13px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .sidebar h4 {
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Accordion Customization */
        .accordion-item {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px !important;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .accordion-button {
            background-color: transparent !important;
            color: white !important;
            box-shadow: none !important;
            padding: 15px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .accordion-button::after {
            filter: brightness(0) invert(1);
            /* Makes arrow white */
        }

        .text-muted {
            color: rgb(127 129 132 / 75%) !important;
        }

        .accordion-body {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            line-height: 1.6;
            background-color: rgba(0, 0, 0, 0.1);
        }

        /* Form Content Area */
        .form-content-wrapper {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (min-width: 992px) {
            .form-content-wrapper {
                padding: 51px 76px 30px 127px;
            }
        }

         .external-header {
            width: 100%;
            max-width: 1100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0 40px 0; /* Added padding */
            position: relative;
        }

        .form-label {
            font-weight: 600;
            color: var(--brand-green);
            margin-bottom: 8px;
        }

        .form-control {
            border-radius: 12px;
            padding: 12px 15px;
            border: 2px solid #e0e0d5;
            background-color: white;
            transition: all 0.3s ease;
        }

        .form-control::placeholder {
            color: #c0c0c0;
        }

        .form-control:focus {
            border-color: var(--brand-green);
            box-shadow: 0 0 0 4px rgba(52, 78, 65, 0.1);
        }

        .btn-submit {
            background-color: var(--brand-green);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 12px;
            font-weight: 500;
            text-transform: none;
            transition: transform 0.2s ease, background-color 0.2s ease;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: #2a3f35;
            transform: translateY(-2px);
            color: white;
        }

       .logo-box {
            width: 55px;
            height: 55px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            overflow: hidden;
            padding: 8px;
        }

        .logo-box img {
            max-width: 100%;
            height: auto;
                filter: grayscale(1);
        }

        .form-footer {
            margin-top: 25px;
            font-size: 0.8rem;
            text-align: center;
            opacity: 0.6;
        }
