 body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        /* SECTION */
        .contact-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #004be4, #0b3383);
            padding: 60px 0;
        }

        /* LEFT SIDE */
        .contact-left {
            color: #fff;
        }

        .contact-left h1 {
            font-size: 45px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-left p {
            color: #d1d9f0;
            line-height: 1.7;
        }

        .contact-info p {
            margin: 10px 0;
            color: #c0c8db;
        }

        /* FORM BOX */
        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .contact-form h3 {
            color: #0b3383;
            font-weight: 600;
            margin-bottom: 25px;
        }

        /* INPUTS */
        .form-control {
            border-radius: 10px;
            padding: 12px;
            border: 1px solid #ddd;
            font-size: 14px;
        }

        .form-control:focus {
            border-color: #004be4;
            box-shadow: none;
        }

        /* BUTTON */
        .submit-btn {
            background: #004be4;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px;
            font-weight: 600;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background: #0b3383;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .contact-left {
                text-align: center;
                margin-bottom: 40px;
            }

            .contact-left h1 {
                font-size: 32px;
            }
        }