/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.site-header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 15px 20px;
}

.logo-box {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand {
  font-weight: bold;
  font-size: 1.2rem;
  color: #5a6b4f;
}

.tagline {
  font-size: 0.8rem;
  color: #888;
}

/* ===== NAV ===== */
nav {
  background: white;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

nav a {
  padding: 12px 15px;
  text-decoration: none;
  color: #555;
  font-weight: 600;
  transition: 0.2s;
}

nav a:hover {
  color: #a18cd1;
}

/* ===== HERO ===== */
.hero {

  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 79, 157);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 12px 18px;
  background: linear-gradient(135deg, #a18cd1, #fbc2eb);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* ===== ARTICLE ===== */
.article {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.article-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.article h1 {
  font-size: 1.9rem;
  margin-bottom: 15px;
}

.article h2 {
  margin-top: 25px;
  color: #6a4fa3;
  font-size: 1.2rem;
}

.article p {
  margin-bottom: 12px;
  color: #444;
}

.article .intro {
  font-size: 1.05rem;
  font-weight: 500;
}

.article ul {
  padding-left: 20px;
  margin: 10px 0;
}

.article li {
  margin-bottom: 6px;
}

/* Highlight Box */
.highlight {
  background: #f3efff;
  padding: 12px;
  border-radius: 10px;
  margin: 15px 0;
  text-align: center;
  font-weight: 500;
}

/* CTA Box */
.cta-box {
  margin-top: 25px;
  text-align: center;

}

/* ===== GRID (Pinterest Style) ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ===== BLOG GRID ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
  align-items:start;
}

/* ===== CARD ===== */
.card{
  background:white;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:0.25s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.card:hover{
  transform:translateY(-5px);
}

.card img{
  width:100%;
  max-height:420px;
  object-fit:contain;
  background:#fff;
  display:block;
}

.card-content{
  padding:18px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.card-content .btn{
  margin-top:auto;
}

/* ===== CARD ===== */


.card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 15px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.85rem;
 margin-bottom: 12px;
  color: #444;

}

.benefits {
  list-style: none;
  margin: 10px 0;
}

.benefits li {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.85rem;
  color: #777;
}

/* ===== MOBILE ===== */
@media(max-width: 600px){

  .logo {
    width: 50px;
    height: 50px;
  }

  .brand {
    font-size: 1rem;
  }

  .tagline {
    display: none;
  }

  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

}
.trust-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  background: #fff;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
}

.final-cta {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #a18cd1, #fbc2eb);
  color: white;
}