body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background-color: #fcecef;
    position: sticky;
    top: 0;
    z-index: 999;
}
header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.hero {
    text-align: center;
    background: linear-gradient(to right, #fcecef, #fff6f9);
    padding: 100px 20px;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5em;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
}
.hero .cta {
    display: flex;
    justify-content: center;
    gap: 1em;
}
.cta .btn {
    background-color: #e295b5;
    color: white;
    text-decoration: none;
    padding: 0.8em 1.5em;
    border-radius: 8px;
    font-size: 1rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.cta .btn:hover {
    background-color: #c86b91;
}
.hero button {
    background-color: #e295b5;
    color: white;
    border: none;
    padding: 0.8em 1.5em;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}
.services, .about, .recognition, .testimonials, .blog-preview, .callout {
    padding: 60px 20px;
    text-align: center;
}
.services h2, .about h2, .recognition h2, .testimonials h2, .blog-preview h2, .callout h2 {
    font-size: 2rem;
    margin-bottom: 1em;
}
.services .cards, .blog-preview .cards {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
}
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    padding: 2em;
    width: 300px;
    transition: all 0.3s ease;
    text-align: center;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}
.card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1em;
    object-fit: contain;
}

.card h3 {
    margin-bottom: 0.5em;
    color: #d973a0;
}
.card p {
    font-size: 0.95rem;
    line-height: 1.4;
}

.about-recognition {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
}
.about-box, .recognition-box {
    flex: 1 1 400px;
    max-width: 600px;
}
.about-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
.about-box img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}
.about-box .text {
    max-width: 100%;
    text-align: left;
}
.recognition-box {
    text-align: center;
}
.recognition-box h2 {
    margin-bottom: 10px;
}
.testimonials {
    padding: 60px 20px;
    text-align: center;
}

..blog-post-wrapper {
  background-color: #fff9fc;
  border-radius: 16px;
  padding: 24px;
  margin: 30px auto;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
  border: 1px solid #f3dce6;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .blog-post-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.blog-post-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.blog-post h3 {
  color: #d973a0;
  margin-top: 0;
}

.blog-post p {
  margin: 10px 0;
}

.blog-post small {
  display: block;
  margin-top: 10px;
  color: #777;
  font-size: 0.85rem;
}


.testimonials .cards {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

.testimonials .card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    padding: 2em;
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1em;
    border: 3px solid #fcecef;
}

.testimonials .card p {
    font-style: italic;
    margin-bottom: 0.5em;
}

.testimonials .card strong {
    font-size: 0.9rem;
    color: #555;
}

.callout .btn {
    background-color: #d973a0;
    color: white;
    padding: 0.8em 1.5em;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1em;
    transition: background-color 0.3s ease;
}
.callout .btn:hover {
    background-color: #b85c89;
}

footer {
    background-color: #fcecef;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}
/* Blog responsiveness adjustments */
#posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.blog-post-wrapper {
  max-width: 90%;
  width: 100%;
  box-sizing: border-box;
  margin: 20px auto;
}

#blog-editor {
  width: 100%;
  max-width: 90%;
  box-sizing: border-box;
}

#blog-editor input,
#blog-editor textarea {
  width: 100%;
  box-sizing: border-box;
}

#login-section {
  width: 90%;
  max-width: 320px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .btn {
    font-size: 1rem;
    padding: 10px 16px;
  }

  header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  header nav a {
    margin-left: 0;
  }

  #search-input {
    width: 100%;
  }

  .blog-post-wrapper {
    padding: 16px;
  }
}
.agent-card {
  width: 300px;
  background: #fff9fc;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.agent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.agent-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #fcecef;
}

.agent-card h3 {
  margin: 0.5em 0 0.2em;
  color: #d973a0;
}

.agent-card .bio {
  font-size: 0.95rem;
  margin-top: 10px;
}
