.credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

@media (max-width: 767px) {
    .credentials {
        flex-direction: column;
    }
}

/* ==========================================
   GOOGLE REVIEWS
   ========================================== */

.google-reviews-section {
    padding: 50px 0;
    background: #fff;
}

.reviews-heading {
    margin-bottom: 35px;
}

.reviews-heading h2 {
    margin: 0 0 8px;
    font-family: "Times New Roman", serif;
    font-size: 30px;
    font-weight: bold;
    color: #202338;
}

.reviews-heading p {
    margin: 0;
    color: #777;
    font-size: 15px;
}


/* Review */

.google-review {
    margin-bottom: 30px;
}


/* Review card */

.google-review-card {
    position: relative;

    min-height: 160px;

    padding: 18px 25px 20px;

    background: #fff;

    border: 1px solid #eeeeee;
    border-radius: 15px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}


/* Small triangle underneath card */

.google-review-card:after {
    content: "";

    position: absolute;

    bottom: -12px;
    left: 55px;

    width: 22px;
    height: 22px;

    background: #fff;

    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    transform: rotate(45deg);
}


/* Quote */

.quote-mark {
    position: absolute;

    left: 10px;
    top: 3px;

    font-family: serif;
    font-size: 35px;
    font-weight: bold;

    color: #d5d5d5;
}


/* Text */

.google-review-card p {
    margin: 0;

    padding-left: 8px;
    padding-right: 12px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    line-height: 1.55;

    font-style: italic;

    color: #777;
}


/* Stars */

.stars {
    color: #fbbc04;

    font-size: 16px;

    font-style: normal;
    font-weight: bold;

    letter-spacing: -1px;

    white-space: nowrap;
}


/* Google */

.google-icon {
    position: absolute;

    right: 10px;
    bottom: 7px;

    font-family: Arial, sans-serif;

    font-size: 23px;
    font-weight: bold;

    color: #4285f4;
}


/* User */

.review-user {
    display: flex;

    align-items: center;

    margin-top: 18px;
    margin-left: 10px;
}


/* Avatar */

.user-avatar {
    width: 43px;
    height: 43px;

    margin-right: 12px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;
    font-weight: bold;
}

.avatar-orange {
    background: #ef6c00;
}

.avatar-purple {
    background: #7e57c2;
}

.avatar-dark {
    background: #333;
}


/* Name/date */

.user-info {
    display: flex;

    flex-direction: column;
}

.user-info strong {
    font-size: 12px;

    color: #555;

    font-weight: bold;
}

.user-info span {
    font-size: 11px;

    color: #777;
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 767px) {

    .google-reviews-section {
        padding: 40px 15px;
    }

    .reviews-heading h2 {
        font-size: 26px;
    }

    .google-review-card {
        min-height: auto;

        padding: 18px 22px 22px;
    }

    .google-review {
        margin-bottom: 35px;
    }

}



/* =========================================
   LANDLORD HERO SECTION
   ========================================= */

.landlord-hero {
    background: #ffffff;
    padding: 42px 0 55px 0;
}

.landlord-hero-row {
    display: flex;
    align-items: center;
}


/* =========================================
   LEFT CONTENT
   ========================================= */

.landlord-content {
    padding-top: 35px;
    padding-left: 45px;
}


/* Small heading */

.landlord-eyebrow {
    margin-bottom: 14px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #b88a3b;
}


/* Main heading */

.landlord-content h1 {
    margin: 0;

    font-family: "Times New Roman", serif;

    font-size: 39px;
    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.8px;

    color: #142943;
}

.landlord-content h1 span {
    color: #bd8b38;
}


/* Intro */

.landlord-intro {
    margin-top: 17px;
    margin-bottom: 20px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;
    line-height: 1.45;

    color: #405673;
}


/* =========================================
   BUTTONS
   ========================================= */

.landlord-buttons {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 20px;
}


.btn-landlord-primary,
.btn-landlord-secondary {
    display: inline-block;

    padding: 13px 21px;

    border-radius: 6px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;
}


/* Primary */

.btn-landlord-primary {
    color: #ffffff;
    background: #142943;

    border: 1px solid #142943;
}

.btn-landlord-primary:hover {
    color: #ffffff;
    background: #0e1e31;
    text-decoration: none;
}


/* Secondary */

.btn-landlord-secondary {
    color: #142943;
    background: #ffffff;

    border: 1px solid #ddd8cf;
}

.btn-landlord-secondary:hover {
    color: #142943;
    background: #faf8f4;
    text-decoration: none;
}


/* =========================================
   CALLBACK NOTE
   ========================================= */

.landlord-note {
    margin-top: 14px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    color: #5c6d7f;
}

.check-mark {
    margin-right: 6px;

    font-size: 15px;
    font-weight: bold;

    color: #378a65;
}


/* =========================================
   RIGHT FORM CARD
   ========================================= */

.landlord-form-card {
    position: relative;

    margin: 0 5px;

    padding: 20px 20px 19px 20px;

    background: #ffffff;

    border: 1px solid #e4e1db;

    border-radius: 14px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06);

    overflow: hidden;
}


/* Gold top border */

.form-top-line {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background: #c3943e;
}


/* Eyebrow */

.form-eyebrow {
    margin-top: 2px;
    margin-bottom: 5px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.6px;

    color: #b88a3b;
}


/* Card heading */

.landlord-form-card h2 {
    margin: 0 0 4px 0;

    font-family: "Times New Roman", serif;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.25;

    color: #142943;
}


/* Description */

.form-description {
    margin: 0 0 12px 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    line-height: 1.45;

    color: #536579;
}


/* Label */

.form-label {
    display: block;

    margin-bottom: 5px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;
    font-weight: normal;

    color: #526174;
}


/* Select */

.landlord-select {
    height: 36px;

    padding: 7px 11px;

    border: 1px solid #ded9d0;

    border-radius: 7px;

    box-shadow: none;

    font-size: 12px;

    color: #263b53;

    background-color: #ffffff;
}

.landlord-select:focus {
    border-color: #c3943e;

    box-shadow: none;
}


/* =========================================
   HANDLE BOX
   ========================================= */

.handle-box {
    margin-top: 13px;
    margin-bottom: 12px;

    padding: 13px 13px 10px 13px;

    background: #fbf4e7;

    border-radius: 9px;
}


/* Handle title */

.handle-title {
    margin-bottom: 7px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.1px;

    color: #b58a43;
}


/* List */

.handle-box ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.handle-box li {
    position: relative;

    padding-left: 18px;

    margin-bottom: 7px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10.5px;

    line-height: 1.4;

    color: #263d56;
}

.handle-box li:last-child {
    margin-bottom: 0;
}


/* Green check */

.handle-box li:before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    font-weight: bold;

    color: #38866a;
}


/* =========================================
   FORM BUTTON
   ========================================= */

.btn-landlord-submit {
    display: block;

    width: 100%;

    padding: 11px 10px;

    text-align: center;

    border-radius: 6px;

    background: #bd8b38;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: background 0.2s ease;
}

.btn-landlord-submit:hover {
    background: #a9792d;

    color: #ffffff;

    text-decoration: none;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .landlord-hero {
        padding: 30px 0 40px 0;
    }

    .landlord-hero-row {
        display: block;
    }

    .landlord-content {
        padding: 10px 20px 35px 20px;
    }

    .landlord-eyebrow {
        font-size: 8px;

        letter-spacing: 1.4px;

        line-height: 1.7;
    }

    .landlord-content h1 {
        font-size: 32px;

        line-height: 1.12;
    }

    .desktop-break {
        display: none;
    }

    .landlord-intro {
        font-size: 15px;
    }

    .landlord-buttons {
        display: block;
    }

    .btn-landlord-primary,
    .btn-landlord-secondary {
        display: block;

        width: 100%;

        text-align: center;

        margin-bottom: 10px;
    }

    .landlord-note {
        line-height: 1.5;
    }

    .landlord-form-card {
        margin: 0 15px;
    }
}