/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
  background: #fff;
  overflow-x: hidden;
}

/* Top navigation */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: #fff;
  border-bottom: 1px solid rgba(213,36,69,0.14);
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.06);
}

.top-nav a {
  flex-shrink: 0;
}

.logo {
  display: block;
  width: 214px;
  height: 48px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  text-decoration: none;
  color: #3f2b31;
  font-weight: bold;
  line-height: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.menu a:hover {
  color: #cc3366;
}

/* Hero section */
.hero {
  min-height: 560px;
  padding: 120px 15%;
  background:
    linear-gradient(90deg, rgba(36,14,21,0.78), rgba(36,14,21,0.34)),
    url("/images/brand/hero.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  
}
h1,h2,p{
  text-align: left;
}


.text{
  text-align: center;
  
  
  background-repeat: no-repeat;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 15px;
}
.hero p {
  max-width: 620px;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  margin-bottom: 28px;
}
.cta {
  background: #cc3366;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1.1em;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10%;
}
.cta:hover {
  background: #b32a58;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  background: #fafafa;
  background: linear-gradient(135deg, #ffe4ec, #fff);
}
@media (max-width: 768px) {
  .top-nav {
    padding: 12px 18px;
    gap: 14px;
  }

  .logo {
    width: 174px;
    height: 40px;
  }

  .menu a {
    margin-left: 10px;
    font-size: 0.92rem;
  }

  .features {
    flex-direction: column;   
    align-items: center;      
  }

  .feature {
    max-width: 90%;           
    margin-bottom: 30px;      
  }
}

.feature {
  text-align: center;
  max-width: 250px;

}
.feature img {
  height: 60px;
  margin-bottom: 15px;
}
.feature h2 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #cc3366;
}
.feature p {
  font-size: 0.95em;
  color: #666;
}

/* Footer */
footer {
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #555;
}
footer a {
  color: #333;          /* 修改文字颜色 */
  text-decoration: none; /* 去掉下划线 */
  margin: 0 10px;        /* 链接之间的间距 */
}

footer a:hover {
  color: #d52445;        /* 鼠标悬停时变色 */
  text-decoration: underline; /* 鼠标悬停时显示下划线 */
}

/* Trust Section */

.trust {
  padding: 60px 20px;
  background: #fff;
  text-align: center; /* 标题和内容居中 */
}

.trust h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

.trust ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.trust ul li {
  list-style: none;
  position: relative;
  width: 280px;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
}

.trust ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.trust ul li img.trust-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* 让文字更清晰 */
  position: absolute;
  top: 0;
  left: 0;
}

.trust ul li span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  z-index: 2;
}
.trust h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #cc3366;
  text-align: center;
}

.trust h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #cc3366;
  text-align: center;
}
.trust p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;

}

.step-grid,
.faq-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.faq-list div {
  text-align: left;
  background: #fff;
  border: 1px solid rgba(213, 36, 69, 0.14);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.06);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #d52445;
  color: #fff;
  font-weight: 800;
}

.step-card h3,
.faq-list h3 {
  color: #2c2024;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-card p,
.faq-list p {
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #ffe4ec, #fff);
  text-align: center;
  padding: 80px 20px;
}
.cta-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #cc3366;
  text-align: center;
}
.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #444;
  line-height: 1.6;
}
.cta-section .cta {
  background: #cc3366;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1.1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.cta-section .cta:hover {
  background: #b32a58;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .trust h2, .cta-section h2 {
    font-size: 1.6em;
  }
  .trust p, .cta-section p {
    font-size: 1em;
    padding: 0 10px;
  }
  .cta-section {
    padding: 60px 15px;
  }
}
.testimonials {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.testimonials h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  padding: 20px;
  max-width: 320px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #d52445;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #d52445;
}

.testimonial-content blockquote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  color: #444;
  margin: 0 0 10px;
}

.testimonial-user {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

/* Section container */
.feature-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Single feature block */
.feature-block {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Text */
.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 20px;
  color: #d52445;
  margin-bottom: 10px;
}

.feature-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  background: #d52445;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background: #a91835;
}

.btn-secondary {
  background: rgba(255,255,255,0.95);
  color: #d52445;
  margin-left: 12px;
}

.btn-secondary:hover {
  background: #fff;
  color: #a91835;
}

.container,
.contact {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 20px;
}

.container h1,
.contact h1 {
  color: #d52445;
  font-size: 2.2rem;
  margin-bottom: 18px;
  text-align: left;
}

.container h2,
.contact h2 {
  color: #222;
  font-size: 1.35rem;
  margin: 28px 0 12px;
}

.container p,
.contact p,
.container li {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.container ul {
  margin: 0 0 18px 20px;
}

.content-page {
  background: #fff;
}

.content-hero {
  padding: 84px 20px 70px;
  background:
    linear-gradient(90deg, rgba(36,14,21,0.86), rgba(36,14,21,0.48)),
    url("/images/brand/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.content-hero .eyebrow {
  max-width: 980px;
  margin: 0 auto 12px;
  color: #ffd8df;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-hero h1,
.content-hero p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.content-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.content-hero p {
  max-width: 760px;
  margin-left: calc((100% - 980px) / 2);
  font-size: 1.22rem;
  line-height: 1.65;
}

.content-hero .btn-cta {
  margin-left: calc((100% - 980px) / 2);
  margin-top: 8px;
}

.content-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}

.breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px 0;
  color: #6f5b61;
  font-size: 0.94rem;
  line-height: 1.5;
}

.breadcrumbs a {
  color: #d52445;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbs span {
  color: #3f2b31;
}

.content-layout article {
  min-width: 0;
}

.content-image {
  margin-bottom: 34px;
}

.content-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(34, 34, 34, 0.10);
}

.content-section {
  margin-bottom: 34px;
}

.content-section h2 {
  color: #2c2024;
  font-size: 1.72rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.content-section p,
.content-section li {
  color: #444;
  font-size: 1.04rem;
  line-height: 1.75;
}

.content-section h3 {
  color: #34242a;
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 22px 0 8px;
}

.content-takeaways {
  background: #fbfbfb;
  border: 1px solid #eee;
  border-left: 4px solid #d52445;
  border-radius: 8px;
  padding: 22px 24px;
}

.content-steps ol,
.content-takeaways ul {
  margin: 0 0 0 22px;
}

.content-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.content-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.content-table th,
.content-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
  color: #444;
  line-height: 1.55;
}

.content-table th {
  background: #fff7f8;
  color: #3f2b31;
  font-size: 0.94rem;
}

.content-table tr:last-child td {
  border-bottom: 0;
}

.content-checklist {
  background: #fff7f8;
  border: 1px solid #ffd7de;
  border-radius: 8px;
  padding: 24px;
}

.content-checklist ul {
  margin-left: 20px;
}

.content-sidebar {
  position: sticky;
  top: 20px;
  background: #fff;
  border: 1px solid rgba(213, 36, 69, 0.16);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.06);
}

.content-sidebar h2 {
  color: #d52445;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.content-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.content-sidebar li {
  border-top: 1px solid #f0d7dc;
}

.content-sidebar li:first-child {
  border-top: 0;
}

.content-sidebar a {
  display: block;
  padding: 11px 0;
  color: #3f2b31;
  text-decoration: none;
  font-weight: 700;
}

.content-sidebar a:hover {
  color: #d52445;
}

.sidebar-cta {
  background: #fff7f8;
  border-radius: 8px;
  padding: 16px;
}

.sidebar-cta h3 {
  color: #2c2024;
  margin-bottom: 8px;
}

.sidebar-cta p {
  color: #555;
  line-height: 1.55;
}

/* Image */
.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Reverse layout */
.feature-block.reverse {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-text {
    order: 1;
  }

  .feature-image {
    order: 2;
  }
}

@media (max-width: 820px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 14px;
    gap: 12px;
  }

  .logo {
    width: 205px;
    height: 46px;
  }

  .menu {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    padding-top: 4px;
  }

  .menu a {
    flex: 1;
    justify-content: center;
    margin-left: 0;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 1rem;
  }

  .menu a:active {
    background: #fff0f3;
  }

  .hero {
    min-height: auto;
    padding: 72px 24px 64px;
    background:
      linear-gradient(180deg, rgba(36,14,21,0.78), rgba(36,14,21,0.42)),
      url("/images/brand/hero.jpg") center/cover no-repeat;
  }

  .hero h1 {
    font-size: 2.75rem;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 1.15rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero .btn-cta {
    display: flex;
    width: min(100%, 320px);
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
    padding: 13px 22px;
    font-size: 1rem;
  }

  .hero .btn-secondary {
    margin-left: 0;
  }

  .feature-section {
    margin: 42px auto;
    padding: 0 18px;
    gap: 46px;
  }

  .feature-block {
    gap: 22px;
  }

  .feature-text h2 {
    font-size: 1.45rem;
  }

  .feature-text h3 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .feature-image img {
    border-radius: 10px;
    aspect-ratio: 4 / 3;
  }

  .trust {
    padding: 42px 18px;
  }

  .trust ul {
    gap: 14px;
  }

  .trust ul li {
    width: 100%;
    max-width: 360px;
    height: 168px;
    border-radius: 8px;
  }

  .step-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .step-card,
  .faq-list div {
    padding: 20px;
  }

  .content-hero {
    padding: 54px 20px 48px;
  }

  .content-hero h1 {
    font-size: 2.35rem;
  }

  .content-hero p,
  .content-hero .btn-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .content-layout {
    grid-template-columns: 1fr;
    padding: 34px 18px;
    gap: 28px;
  }

  .breadcrumbs {
    padding: 14px 18px 0;
    font-size: 0.9rem;
  }

  .content-sidebar {
    position: static;
  }

  .content-image img {
    aspect-ratio: 4 / 3;
  }

  .content-section h2 {
    font-size: 1.45rem;
  }
}

.blog {
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
}

.blog h1 {
  font-size: 2rem; /* ~32px */
  margin-bottom: 1rem;
  color: #d52445; /* 品牌主色 */
  text-align: left;
}

.blog h2 {
  font-size: 1.5rem; /* ~24px */
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
  border-left: 4px solid #d52445;
  padding-left: 10px;
}

.blog h3 {
  font-size: 1.25rem; /* ~20px */
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: #444;
}

.blog p {
  font-size: 1rem; /* ~16px */
  margin-bottom: 1.2em;
}

.blog strong {
  color: #d52445;
}

.blog ul {
  margin: 1em 0 1.5em 1.5em;
  padding-left: 1em;
}

.blog ul li {
  margin-bottom: 0.6em;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .blog {
    padding: 20px 15px;
  }
  .blog h1 {
    font-size: 1.6rem;
  }
  .blog h2 {
    font-size: 1.3rem;
  }
  .blog h3 {
    font-size: 1.1rem;
  }
  .blog p, .blog ul li {
    font-size: 0.95rem;
  }
}


.related-links {
  margin-top: 40px;
  padding: 20px;
  background: #fafafa;
  border-top: 2px solid #eee;
}

.related-links h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #d52445;
}

.related-links ul {
  list-style: none;
  padding-left: 0;
}

.related-links li {
  margin-bottom: 10px;
}

.related-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s;
}

.related-links a:hover {
  color: #d52445;
}


.blog-image {
  margin: 30px auto;
  text-align: center;
  max-width: 800px; /* 限制宽度，避免过宽 */
}

.blog-image img {
  width: 100%;
  height: auto;
  border-radius: 12px; /* 圆角，更现代 */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* 柔和阴影 */
}

.blog-image figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .blog-image {
    padding: 0 15px;
  }

  .blog-image figcaption {
    font-size: 0.9rem;
  }
}
/* Author Bio – Team */
.author-bio.team-bio {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 40px auto 0;
  padding: 22px;
  max-width: 900px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.author-bio .author-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  object-fit: contain;
}

.author-bio .author-info h3 {
  margin: 2px 0 6px;
  font-size: 1.15rem;
  color: #222;
}

.author-bio .author-info p {
  margin: 8px 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.98rem;
}

.author-bio .author-highlights {
  margin: 10px 0 8px 0;
  padding-left: 18px;
  color: #444;
  line-height: 1.6;
}

.author-bio .author-highlights li {
  margin: 4px 0;
  position: relative;
}

.author-bio .author-highlights li::marker {
  color: #d52445; /* 品牌红 */
}

.author-bio .author-meta {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #666;
}

.author-bio .author-links a {
  color: #d52445;
  text-decoration: none;
  font-weight: 600;
}

.author-bio .author-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 720px) {
  .author-bio.team-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
  }
  .author-bio .author-logo {
    width: 64px;
    height: 64px;
  }
  .author-bio .author-info h3 {
    font-size: 1.1rem;
  }
  .author-bio .author-info p,
  .author-bio .author-highlights {
    font-size: 0.95rem;
    text-align: left;
  }
}

.more-blogs {
  text-align: center;
  margin-top: 20px;
}

.more-blogs a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #d52445; /* 保持和网站主色调一致 */
  text-decoration: none;
  border: 1px solid #d52445;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.more-blogs a:hover {
  background-color: #d52445;
  color: #fff;
}


.more-blogs {
  text-align: center;
  margin-top: 20px;
}

.more-blogs a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #d52445; /* 保持和网站主色调一致 */
  text-decoration: none;
  border: 1px solid #d52445;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.more-blogs a:hover {
  background-color: #d52445;
  color: #fff;
}
