        .form-container {
            background: #1565C0;
            border-radius: 12px;
            padding: 30px;
            width: 100%;
            max-width: 850px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            margin: auto;
            margin-top: 100px;
        }



        .title {
            color: white;
            font-size: 24px;
            font-weight: bold;
            line-height: 1.2;
        }

        .form-content {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .inputs-section {
            flex: 2;
        }

        #form_logo {
            width: 40%;
            height: auto;
            flex-shrink: 0;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            color: white;
            font-size: 14px;
            font-weight: normal;
            margin-bottom: 5px;
        }

        .form-group input {
            width: 100%;
            padding: 8px 12px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            background: #E3F2FD;
            height: 35px;
        }

        .form-group input:focus {
            outline: none;
            background: white;
        }

        .message-group {
            margin-bottom: 15px;
        }

        .message-group label {
            display: block;
            color: white;
            font-size: 14px;
            font-weight: normal;
            margin-bottom: 5px;
        }

        .message-group textarea {
            width: 90%;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            background: #E3F2FD;
            resize: none;
            height: 80px;
            font-family: Arial, sans-serif;
        }

        .message-group textarea:focus {
            outline: none;
            background: white;
        }

        /* Placeholder styling */
        input::placeholder,
        textarea::placeholder {
            color: #999;
        }

        #contact_submit {
            background-color: #FF931E;
            border: none;
            color: white;
            text-decoration: none;
            margin: 4px 2px;
            cursor: pointer;
            padding: 10px;
            width: 150px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
        }