.chat-page>h1 {
    color: #4a2783;
    font-size: 40px;
    margin-bottom: 20px;
}
.chat-page>h2 {
    color: #4a2783;
    margin-bottom: 16px;
    text-transform: none;
}
.chat-page>p {
    color: #5A2293;
    margin-bottom: 20px;
    font: normal normal normal 20px / 24px Rubik;
}
.chat-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.chat-option {
    width: calc(50% - 10px);
    border: 1px solid #707070;
    border-radius: 25px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.chat-option>input {
    margin-right: 12px;
    outline: none !important;
}
.chat-option>span {
    color: #8B8B90;
    font: normal normal normal 20px / 24px Rubik;
}
.chat-footer {
    margin-top: 20px;
    height: 48px;
}
.chat-button,
.travel-message {
    margin-left: 8px;
}
.chat-button {
    background: #A6C73C;
    color: #fff;
    border: 0;
    padding: 11px 28px;
    font: normal normal 800 28px / 31px Rubik;
    border-radius: 3px;
    cursor: pointer;
    max-width: 256px;
    height: 48px;
}
.travel-message {
    font-size: 16px;
}
.mobile-chat-button {
    display: none;
}
@media only screen and (max-width: 1100px) {
    .container {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .chat-option {
        width: 100%;
    }
    .chat-page h1 {
        font-size: 30px;
    }
    .chat-footer {
        display: none;
    }
    .mobile-chat-button {
        display: block;
    }
}