.page-title {
    text-align: center;
    font-size: 1.3em;
    color: #2c3e50;
    margin: 10px 0;
    font-weight: 600;
}

.property-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 10px 40px;
}

.property-column {
    flex: 1;
    background: var(--primary-color);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.property-column h2 {
    font-size: 1.8em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.property-list {
    list-style: none;
    padding: 0;
}

.property-list li {
    margin: 10px 0;
    font-size: 1.2em;
    transition: color 0.3s;
}

.property-list li a {
    text-decoration: none;
    color: #3498db;
}

.property-list li a:hover {
    color: #e74c3c;
}

.rental-terms {
    text-align: center;
    margin-top: 30px;
}

.rental-terms a {
    color: #e74c3c;
    font-weight: bold;
    text-decoration: none;
}

.rental-terms a:hover {
    text-decoration: underline;
}

.aligncenter {
    color: #000;
    text-align: center;
    margin: 20px 0;
}

.style1 {
    font-style: italic;
    color: #434242; /* Couleur grise pour le texte */
    text-align: center;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .property-column {
        margin-bottom: 20px;
    }

    .property-selection {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .page-title {
        font-size: 1em;
    }
}
