/* Room2Rent Page Styles */

/* Main Content */
.main-content {
    width: 100%;
    margin-top: 200px;
    margin-bottom: 100px;
    min-height: 200vh;
    background-color: var(--bg-body-page);
}

/* Info Sections */
.info-section {
    width: 100%;
    padding: 0 185px;
    margin-top: 60px;
    box-sizing: border-box;
}

.info-section:first-of-type {
    margin-top: 60px;
}

/* Section Title */
.r2r-section-title {
    font-size: 32px;
    font-weight: var(--font-semibold);
    color: var(--black);
    margin: 0 0 35px 0;
    line-height: 1.2;
}

.section-title {
    font-size: 32px;
    font-weight: var(--font-semibold);
    color: var(--pink);
    margin: 0 0 35px 0;
    line-height: 1.2;
}

/* Logo Container */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 35px 0;
}

.brand-logo {
    width: 402px;
    height: 100px;
    object-fit: contain;
}

.mobile-logo {
    width: 103px;
    height: 80px;
    object-fit: contain;
}

.flat-logo {
    width: 103px;
    height: 80px;
    object-fit: contain;
}

/* Section Paragraph */
.section-paragraph {
    font-size: 20px;
    font-weight: var(--font-light);
    color: var(--black);
    margin: 0 0 15px 0;
    line-height: 1.6;
    text-align: justify;
}

.section-paragraph strong {
    font-weight: var(--font-medium);
}

.section-paragraph-small-gap {
    margin-top: 20px;
}

/* Section List */
.section-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 100px;
}

.section-list li {
    font-size: 20px;
    font-weight: var(--font-medium);
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.section-list li::before {
    content: "⦁";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: var(--font-medium);
}

.section-list li:last-child {
    margin-bottom: 0;
}

/* Arrow Section */
.arrow-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding: 0 185px;
    box-sizing: border-box;
}

.arrow-icon {
    width: 54px;
    height: 22px;
    object-fit: contain;
}

/* Owner CTA Section */
.owner-cta-section {
    width: 100%;
    padding: 0 185px;
    margin-top: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.owner-cta-title {
    font-size: 32px;
    font-weight: var(--font-semibold);
    color: var(--pink);
    margin: 0 0 35px 0;
    line-height: 1.2;
    text-align: center;
}

.owner-cta-paragraph {
    font-size: 20px;
    font-weight: var(--font-regular);
    color: var(--black);
    margin: 0 0 35px 0;
    line-height: 1.6;
    text-align: justify;
    max-width: 100%;
    padding: 0 100px 0 100px;

}

.owner-cta-button {
    width: 292px;
    height: 47px;
    border-radius: 50px;
    border: none;
    background-color: var(--pink);
    color: var(--white);
    font-size: 19px;
    font-weight: var(--font-regular);
    cursor: pointer;
    text-transform: none;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.owner-cta-button:hover {
    background-color: #b8396a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 66, 120, 0.3);
}