:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --btn-register-login-bg: #C30808;
    --btn-register-login-text: #FFFF00;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
}

/* Base styles for the page content */
.page-resources-f88-property-deed-mortgage-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Body background is white, so use dark text */
    background-color: var(--secondary-color); /* Matches shared.css body background */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-resources-f88-property-deed-mortgage-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-f88-property-deed-mortgage-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-resources-f88-property-deed-mortgage-guide__section:last-of-type {
    border-bottom: none;
}

.page-resources-f88-property-deed-mortgage-guide__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-f88-property-deed-mortgage-guide__sub-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-f88-property-deed-mortgage-guide__paragraph {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
}

.page-resources-f88-property-deed-mortgage-guide__sub-paragraph {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.page-resources-f88-property-deed-mortgage-guide__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-resources-f88-property-deed-mortgage-guide__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-resources-f88-property-deed-mortgage-guide__ordered-list {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-resources-f88-property-deed-mortgage-guide__list-item {
    margin-bottom: 10px;
    font-size: 17px;
}

/* Hero Section */
.page-resources-f88-property-deed-mortgage-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px; /* Base padding, adjusted by padding-top from main */
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a9d6a 100%); /* Green gradient */
    color: var(--text-light);
}