main {
    margin: 0;
    font-family: var(--siteFont1);
    color: #1f2a2e;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.mainone {
    font-family: var(--siteFont1);
    margin: 0 0 16px;
	text-align: center;
    font-size: 36px;
    letter-spacing: 2px;
}

.maintwo {
    font-family: var(--siteFont1);
    margin: 0 0 16px;
}

.mainthree {
    font-family: var(--siteFont1);
    margin: 0 0 16px;
}

.subtext {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 14px;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    border: 2px solid #2c5f66;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    background: #fff;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #444;
}

.features.secondary {
    margin-top: 32px;
    grid-template-columns: repeat(3, 1fr);
}

.banner-image {
    width: 100%;
    height: 260px;
background: #ccc url("https://s3.us-east-1.wasabisys.com/ccpmhhi.icnd-cdn.com/images/propertymanagement/row-of-houses.jpg") center / cover no-repeat;
	    margin: 80px 0 0;
}

.about {
    text-align: center;
    padding: 50px 20px;
}

.about p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #444;
}

.communities {
    background: #174a52;
    color: #fff;
    padding: 60px 20px;
}

.communities h2 {
    text-align: center;
    margin-bottom: 40px;
	color: #fff
}

.community-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.community-card {
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 24px;
    font-size: 13px;
}

.community-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
	color:#fff;
	text-align: center;
}

.community-card ul {
    padding-left: 16px;
}

.community-card li {
    margin-bottom: 8px;
}

.community-card button {
    margin-top: 14px;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #6fa6ad;
    color: #083238;
    font-weight: 600;
    cursor: pointer;
}

.testimonials {
    background: #ffffff url("https://s3.us-east-1.wasabisys.com/ccpmhhi.icnd-cdn.com/images/propertymanagement/oceanback.jpg") center / cover no-repeat;
    padding: 80px 20px;
}

.testimonials h2 {
    text-align: center;
}

.testimonials .subtext {
    margin: auto;
	text-align: center;
	padding-bottom: 40px;
}

.testimonial-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
	background: #fcfdfd;
    border: 2px solid #2c5f66;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    background: #ccc;
}

.testimonial p {
    font-size: 14px;
    color: #444;
}

@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    .features.secondary {
        grid-template-columns: repeat(2, 1fr);
    }
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mainone {
        font-size: 28px;
    }
    .features,
    .features.secondary,
    .community-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    background: #d9d4c7 url("https://s3.us-east-1.wasabisys.com/ccpmhhi.icnd-cdn.com/images/propertymanagement/faq-back.jpg") center / cover no-repeat;
    padding: 80px 20px 60px;
    text-align: center;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.faq-item {
    max-width: 1100px;
    margin: 0 auto 18px;
    background: #1a4d55;
    color: #fff;
    padding: 18px 24px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.faq-item .plus {
    font-size: 26px;
    font-weight: 300;
}

.faq-note {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
}

:root {
  --faq-width: 1200px;
}
		
.accordion {
  position: relative;
  background-color: #1f4f55;
  color: #ffffff;
  cursor: pointer;
  padding: 28px 80px 28px 32px;
  width: 100%;
  max-width: var(--faq-width);
  margin: 0 auto 20px auto;
  border: none;
  text-align: left;
  outline: none;
  font-size: 22px;
  font-weight: 500;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}


.accordion:hover {
  background-color: #1b464b;
}


.plus {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  pointer-events: none;
}

/*.accordion.active .plus {
  content: "Ã—";
  transform: translateY(-50%) rotate(45deg);
}*/

.panel {
  max-width: var(--faq-width);
  margin: 0 auto 20px auto;
}
	
.panel.collapse:not(.show) {
  display: none;
	
}
	
.panel.collapse {
  transition: height 0.35s ease;
}	

.panel p {
  background-color: #ffffff;
  color: #2b2b2b;
  padding: 32px;
  width: inherit;
  margin: auto;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.6;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}


@media (max-width: 900px) {
  .accordion {
    padding: 24px 64px 24px 24px;
    font-size: 20px;
  }

  .panel p {
    max-width: 100%;
    margin-left: 0;
  }

  .plus {
    right: 24px;
  }
}	
	
.feature-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 18px;
    display: block;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #1f4f55;
    stroke-width: 1.8;
    fill: none;
}

.accordion.elm-active {background:#1f4f55}
.accordion[aria-expanded="true"] .plus {
  transform: translateY(-50%) rotate(45deg);
}


.community-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.community-card button {
    margin-top: auto;
}



.community-grid {
    align-items: stretch;
}

.community-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.community-card > a {
    margin-top: auto;
    display: block;
}

.community-card button {
    width: 100%;
}
