        .right-container {
            @media (max-width: 1295px) {
                    display: flex;
                    flex-direction: column;
                    flex-grow: 1;
            }
            @media (min-width: 1296px) {
                    width: 100%;
            }
            .agent-container {
                height: 720px;
            }
            .architect-container {
                height: 740px;
            }
            .agent-container, .architect-container {
                @media (max-width: 1295px) {
                    padding: 16px;
                }
                @media (min-width: 1296px) {
                    padding: 32px;
                }
                border-radius: 6px;
                background-color: #fff;
                margin-bottom: 20px;

                .alert {
                    margin-top: 15px;
                }

                .contact-title {
                    display: flex;
                    justify-content: center;
                    font-weight: 400;
                    font-size: 24px;
                    line-height: 120%;
                    color: #212529;
                    @media (max-width: 400px) {
                        font-size: 22px;
                    }
                }

                .section {
                    display: block;
                    text-align: center;
                    margin-top: 20px;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 150%;
                    color: #212529;
                    img {
                        width: 138px;
                        height: 138px;
                        border-radius: 4px;
                    }
                    .agent-name, .architect-name {
                        margin-top: 5px;
                        font-size: 16px;
                        margin-bottom: 5px;
                    }
                    .agent-contact-info, .architect-contact-info {
                        img {
                            width: 12px;
                            height: 12px;
                        }
                        margin-top: 0px;
                    }
                }
                form {
                    .line {
                        margin-top: 20px;
                    }
                    .disclaimer-text {
                        font-size: 12px;
                        line-height: 121%;
                        color: #6C757D;
                        margin-top: 15px;
                    }
                    .buttons {
                        margin-top: 30px;
                        display: flex;
                        gap: 20px;
                        justify-content: center;
                        .button1 {
                            text-align: center;
                            padding: 6px 12px;
                            /* width: 170px; */
                            flex-grow: 1;
                            height: 38px;

                            background: linear-gradient(90deg, #DDCE89 0%, #BC974E 100%);
                            border: 1px solid #BC974E;
                            border-radius: 6px;

                            font-weight: 700;
                            font-size: 16px;
                            line-height: 150%;
                            color: #FFFFFF;

                            &:hover {
                                background: #AE8644;
                                border: 1px solid #AF8540;
                            }
                        }
                        .button2 {
                            text-align: center;
                            padding: 6px 12px;
                            /* width: 170px; */
                            flex-grow: 1;
                            height: 38px;

                            background: rgba(255, 255, 255, 1e-06);
                            border: 1px solid #BC974E;
                            border-radius: 6px;

                            font-weight: 700;
                            font-size: 16px;
                            line-height: 150%;
                            color: #BC974E;
                            text-decoration: none;

                            &:hover {
                                background: #BC974E;
                                border: 1px solid #BC974E;
                                color: white;
                            }
                        }
                    }
                }
            }
        }
