/* =========================
RESET & BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
}

/* =========================
CONTAINER SYSTEM
========================= */

.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
HEADER
========================= */

.site-header {
  background: #0f172a;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.nav a {
  color: #cbd5e1;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  color: white;
}

.header-cta .btn-primary {
  background: #2563eb;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* =========================
BUTTONS
========================= */

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}

/* =========================
HERO SECTION
========================= */

.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 25px;
}

.hero-buttons a {
  margin: 10px;
}

/* =========================
SECTIONS
========================= */

.section {
  padding: 70px 0;
}

.section.alt {
  background: white;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.section-desc {
  text-align: center;
  margin-bottom: 40px;
  color: #475569;
}

/* =========================
GRID & CARDS
========================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
CONTENT BLOCK (ARTICLE STYLE)
========================= */

.content-block h2 {
  text-align: left;
  margin-top: 40px;
}

.content-block p {
  margin: 15px 0;
  font-size: 16px;
}

/* =========================
FAQ
========================= */

.faq h3 {
  margin-top: 20px;
  font-size: 18px;
}

.faq p {
  margin-bottom: 10px;
}

/* =========================
NEWSLETTER
========================= */

.newsletter {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.newsletter input {
  padding: 12px;
  width: 300px;
  border: 1px solid #cbd5e1;
  border-radius: 8px 0 0 8px;
}

.newsletter button {
  padding: 12px 20px;
  border: none;
  background: #2563eb;
  color: white;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

/* =========================
FOOTER
========================= */

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.site-footer a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin: 5px 0;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  font-size: 14px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter input {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .newsletter button {
    border-radius: 8px;
    width: 100%;
  }

}




/* =========================
CONTACT FORM
========================= */

.contact-form {
  margin-top: 25px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
}

.contact-form button {
  margin-top: 20px;
  border: none;
  cursor: pointer;
}



/* =========================
TRUST SECTION
========================= */

.trust-section {
  padding: 70px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.trust-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.trust-card h3 {
  margin-bottom: 12px;
}


/* =========================
image SECTION
========================= */


.article-image{
  width:100%;
  border-radius:12px;
  margin:25px 0;
}






/* =========================
SITE LOGO
========================= */

.site-logo{
  max-height:60px;
  max-width:220px;
  width:auto;
  height:auto;
  display:block;
}

@media (max-width:768px){

  .site-logo{
    max-height:50px;
    max-width:180px;
  }

}