        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--sk-white);
            color: var(--sk-dark);
            line-height: 1.6;
           
        }


   
        /* --- Main Layout Grid --- */
        .contact-section {
            padding: 60px 20px;
            max-width: 1100px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border-top: 5px solid #f8c301; /* Sharekhan Yellow top accent */
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap; /* Allows stacking on mobile viewports */
        }

        /* --- Left Side: Corporate Info --- */
        .contact-info-panel {
            flex: 1 1 400px;
            background-color: #22252a; /* Deep Charcoal */
            color: #ffffff;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            .contact-info-panel h2 {
                font-size: 2.2rem;
                font-weight: 800;
                margin-bottom: 15px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

                .contact-info-panel h2 span {
                    color: #f8c301; /* Sharekhan Yellow */
                }

            .contact-info-panel p {
                color: #cbd5e1;
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 40px;
            }

        .info-item-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        /* Bullet marker styled with brand yellow */
        .info-icon {
            color: #f8c301;
            font-size: 1.3rem;
            font-weight: bold;
            margin-right: 15px;
            line-height: 1;
        }

        .info-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .info-text p {
            font-size: 0.95rem;
            color: #94a3b8;
            margin-bottom: 0;
        }

        /* --- Right Side: Interaction Form --- */
        .contact-form-panel {
            flex: 1 1 500px;
            padding: 50px;
            background-color: #ffffff;
        }

            .contact-form-panel h3 {
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 25px;
                color: #22252a;
                position: relative;
                padding-bottom: 8px;
            }

                /* Small structural line underneath form heading */
                .contact-form-panel h3::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 40px;
                    height: 3px;
                    background-color: #f8c301;
                }

        .form-group-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-field {
            flex: 1 1 200px;
            display: flex;
            flex-direction: column;
        }

        .form-field-full {
            width: 100%;
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }

            .form-field label, .form-field-full label {
                font-size: 0.85rem;
                font-weight: 700;
                text-transform: uppercase;
                color: #4a5568;
                margin-bottom: 8px;
                letter-spacing: 0.5px;
            }

            .form-field input, .form-field-full input, .form-field-full textarea {
                width: 100%;
                padding: 12px 16px;
                border: 1px solid #cbd5e1;
                border-radius: 4px;
                font-size: 0.95rem;
                color: #22252a;
                background-color: #f8fafc;
                transition: all 0.25s ease;
            }

                /* Input Interaction States */
                .form-field input:focus, .form-field-full input:focus, .form-field-full textarea:focus {
                    outline: none;
                    border-color: #22252a;
                    background-color: #ffffff;
                    box-shadow: 0 0 0 3px rgba(34, 37, 42, 0.08);
                }

            .form-field-full textarea {
                resize: vertical;
                min-height: 120px;
            }

        /* --- Submission Button --- */
        .submit-btn {
            display: inline-block;
            background-color: #f8c301; /* Sharekhan Yellow */
            color: #22252a;
            border: 2px solid #f8c301;
            padding: 14px 35px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.25s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

            .submit-btn:hover {
                background-color: #22252a; /* Inverts to Charcoal */
                border-color: #22252a;
                color: #ffffff;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(34, 37, 42, 0.15);
            }

        /* --- Small Screen Adaptation --- */
        @media (max-width: 768px) {
            .contact-info-panel, .contact-form-panel {
                padding: 30px;
            }
        }