 .faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-section .faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faq-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
}

.faq-section .faq-divider {
    width: 80px;
    height: 3px;
    background: #0aa3b5;
    margin: 0 auto 18px;
}

.faq-section .faq-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.faq-section .faq-list {
    text-align: left;
}

.faq-section .faq-item {
    border-bottom: 1px solid #d8eef2;
    padding: 20px 0;
}

.faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.faq-section .faq-icon {
    font-size: 14px;
    color: #0aa3b5;
    transition: transform 0.3s ease;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-section .faq-answer {
    display: none;
    margin-top: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding-right: 40px;
}

.faq-section .faq-cta {
    margin-top: 50px;
}

.faq-section .btn-primary {
    display: inline-block;
    background: #0aa3b5;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.steps-section-button a.contact-btn{
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    padding: 15px 25px;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 120px;
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
}
.steps-section-button a.contact-btn:hover {
    background-color: var(--accent-dark);
}
#community-cards {
    padding: 80px 20px;
    background: #f5f5f5;
}

/* container */
#community-cards .community-cards__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* cards wrapper */
#community-cards .community-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* card base */
#community-cards .community-card {
    min-height: 320px;
    padding: 50px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

/* headings */
#community-cards .community-card h3 {
    font-family: "Georgia", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
}

/* text */
#community-cards .community-card p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 90%;
}

/* card colors */
#community-cards .card-one {
    background-color: #0aa3b5;
}

#community-cards .card-two {
    background-color: #0b8696;
}

#community-cards .card-three {
    background-color: #054f59;
}

/* Contact button */
#community-cards .contact-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #0aa3b5;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

#community-cards .contact-btn:hover {
    background-color: #087f8e;
}

.grid-container .more-details,
.listing-box .third_section a {
    text-transform: uppercase;
}

#single_property_features {
    padding: 80px 20px;
    background: #f2f2f2;
}

#single_property_features .sp-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
#single_property_features .sp-heading {
    text-align: center;
    margin-bottom: 60px;
}

#single_property_features .sp-heading h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
}

#single_property_features .sp-heading-line {
    width: 80px;
    height: 3px;
    background: #0aa3b5;
    display: inline-block;
}

/* Cards wrapper */
#single_property_features .sp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card base */
#single_property_features .sp-card {
    min-height: 360px;
    padding: 40px 30px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Card colors */
#single_property_features .sp-card-one {
    background: #08a6bb;
}

#single_property_features .sp-card-two {
    background: #0a7f91;
}

#single_property_features .sp-card-three {
    background: #065a63;
}

/* Card typography */
#single_property_features .sp-card h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

#single_property_features .sp-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}


 @media(max-width:991px){
 	#community-cards .community-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #community-cards .community-card {
        min-height: auto;
    }

    #single_property_features .sp-cards {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 575px) {
    #single_property_features {
        padding: 60px 15px;
    }

    #single_property_features .sp-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #single_property_features .sp-heading h2 {
        font-size: 26px;
    }
}