/* news.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --color-navy: #1a2a6c;
  --color-emerald: #2ecc71;
  --color-light: #f9f9f9;
  --color-dark: #333;
  --color-muted: #777;
  --font-primary: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  font-size: 16px;
  color: var(--color-dark);
  background-color: var(--color-light);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-weight: 400;
  color: var(--color-dark);
  transition: color 0.3s;
}

nav a:hover {
  color: var(--color-emerald);
}

  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
  }
  
  nav ul {
    display: flex;
    gap: 1.5rem;
  }
  
  nav a {
    font-weight: 400;
    color: var(--color-dark);
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: var(--color-emerald);
  }

/* Hero Section */
.blog-hero {
  background: linear-gradient(135deg, var(--color-navy), var(--color-emerald));
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 3rem;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-hero article {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-dark);
  padding: 2rem;
  margin: 2rem auto 0;
  max-width: 800px;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.blog-hero article h3 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.blog-hero article time {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.blog-hero article ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-hero address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

/* Blog Posts Section */
.blog-posts {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.blog-posts h2 {
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 2rem;
  text-align: center;
}

.blog-posts article {
  background: #fff;
  border-left: 5px solid var(--color-emerald);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.blog-posts article:hover {
  transform: translateY(-5px);
}

.blog-posts article h3 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.blog-posts article p {
  margin-bottom: 1rem;
}

.blog-posts article a {
  font-weight: 600;
  color: var(--color-emerald);
  text-decoration: underline;
  transition: color 0.3s;
}

.blog-posts article a:hover {
  color: var(--color-navy);
}

/* Footer */
footer {
  background-color: var(--color-navy);
  color: #fff;
  padding: 2rem 2rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li a {
  color: #fff;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--color-emerald);
}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.bottom-footer .legal-links li {
  display: inline;
  margin-left: 1rem;
}

.bottom-footer a:hover {
  color: var(--color-emerald);
}

@media (max-width: 600px) {
  .signup-hero h1 { font-size: 2.5rem; }
  .signup-form-section { padding: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .bottom-footer { flex-direction: column; gap: 1rem; }
}
  
  /* Responsive */
  @media (max-width: 768px) {
    .values-grid, .footer-grid {
      grid-template-columns: 1fr;
    }
    .bottom-footer {
      flex-direction: column;
      gap: 1rem;
    }
  }