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

:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

header.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

.mega-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: white;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 20s infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
  animation: float 15s infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 20%;
  animation: float 25s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text > p {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
}

.hero-btn.primary {
  background: white;
  color: var(--primary);
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-btn.secondary:hover {
  background: white;
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-mini {
  display: flex;
  flex-direction: column;
}

.stat-mini strong {
  font-size: 24px;
  font-weight: 700;
}

.stat-mini span {
  font-size: 12px;
  opacity: 0.9;
}

.hero-visual {
  position: relative;
  height: 400px;
}

.visual-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: cardFloat 6s infinite ease-in-out;
}

.visual-card.card-1 {
  top: 20px;
  left: 0;
  animation-delay: 0s;
}

.visual-card.card-2 {
  top: 150px;
  right: 40px;
  animation-delay: 2s;
}

.visual-card.card-3 {
  bottom: 40px;
  left: 60px;
  animation-delay: 4s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.card-icon {
  font-size: 32px;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text strong {
  font-size: 14px;
  color: var(--dark);
}

.card-text span {
  font-size: 12px;
  color: var(--gray);
}

section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
}

.featured-stories {
  background: var(--light);
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.story-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.story-card.featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 62%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

.story-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.story-content {
  padding: 28px;
}

.story-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--dark);
}

.story-date {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 16px;
  display: block;
}

.story-content > p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.story-link:hover {
  color: var(--secondary);
}

.market-pulse {
  background: var(--dark);
  color: white;
}

.market-pulse .section-header h2,
.market-pulse .section-header p {
  color: white;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.pulse-card {
  background: rgba(255,255,255,0.1);
  padding: 28px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.pulse-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pulse-label {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.pulse-change {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
}

.pulse-change.positive {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
}

.pulse-change.neutral {
  background: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
}

.founder-spotlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.spotlight-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.spotlight-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.spotlight-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}

.spotlight-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 28px;
}

.spotlight-btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}

.spotlight-btn:hover {
  transform: translateY(-2px);
}

.spotlight-quote {
  background: rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border-left: 4px solid white;
}

.spotlight-quote blockquote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.spotlight-quote cite {
  font-size: 14px;
  opacity: 0.9;
  font-style: normal;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sector-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.sector-card:hover {
  transform: translateY(-4px);
}

.sector-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.sector-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--dark);
}

.sector-card > p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sector-stat {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.funding-tracker {
  background: var(--light);
}

.funding-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.funding-item {
  background: white;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.funding-company strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--dark);
}

.funding-company span {
  font-size: 12px;
  color: var(--gray);
}

.funding-details {
  display: flex;
  gap: 20px;
  align-items: center;
}

.funding-round {
  background: var(--light);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}

.funding-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.funding-lead {
  font-size: 13px;
  color: var(--gray);
}

.view-all-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.view-all-link:hover {
  color: var(--secondary);
}

.insights-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.insight-main {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.insight-main h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}

.insight-main p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.insight-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insight-stat-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13px;
  color: var(--gray);
}

.regional-spotlight {
  background: var(--light);
}

.regional-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.regional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.regional-stat {
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.regional-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.regional-stat span {
  font-size: 13px;
  color: var(--gray);
}

.newsletter-signup {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.newsletter-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: white;
}

.newsletter-content p {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.7;
}

.newsletter-form {
  text-align: center;
}

.newsletter-btn {
  display: inline-block;
  background: white;
  color: var(--accent);
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s;
  margin-bottom: 12px;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
}

.newsletter-note {
  font-size: 13px;
  opacity: 0.9;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.analysis-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.analysis-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--dark);
}

.analysis-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.analysis-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

footer {
  background: var(--dark);
  color: white;
  padding: 40px 0 20px;
}

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

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 16px;
  color: white;
}

.footer-col p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 38px;
  margin-bottom: 12px;
  font-weight: 700;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.95;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  font-size: 13px;
  margin: 0;
}

.privacy-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.privacy-buttons button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.privacy-buttons button:hover {
  background: var(--secondary);
}

.privacy-buttons a {
  color: white;
  font-size: 13px;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .story-card.featured {
    grid-template-columns: 1fr;
  }
  
  .spotlight-wrapper {
    grid-template-columns: 1fr;
  }
  
  .insights-wrapper {
    grid-template-columns: 1fr;
  }
  
  .newsletter-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .mega-hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-visual {
    height: 250px;
  }

  .visual-card {
    padding: 16px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .funding-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .funding-details {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .pulse-grid,
  .sectors-grid,
  .analysis-grid {
    grid-template-columns: 1fr;
  }
}

.news-content {
  max-width: 900px;
  margin: 0 auto;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 12px;
  flex-wrap: wrap;
}

.news-meta .date {
  color: var(--gray);
}

.news-meta .category {
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.news-item h2,
.news-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.3;
}

.news-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-categories {
  background: var(--light);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.cat-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cat-card:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
}

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.resources-intro h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.resources-intro p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.product-card > p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-features span {
  background: var(--light);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  color: var(--dark);
}

.product-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.product-btn {
  display: block;
  background: var(--primary);
  color: white;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s;
}

.product-btn:hover {
  background: var(--secondary);
}

.free-resources {
  background: var(--light);
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.resource-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.resource-item h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.resource-item p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.resource-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.resource-link:hover {
  color: var(--secondary);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.topic-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.topic-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.topic-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.info-item {
  margin-bottom: 28px;
}

.info-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
}

.info-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--primary);
}

.submit-btn {
  background: var(--primary);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--secondary);
}

.map-section {
  background: var(--light);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 20px;
}

.thankyou-content,
.error-content {
  text-align: center;
  color: white;
  max-width: 600px;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.thankyou-content h1,
.error-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: white;
}

.error-code {
  font-size: 96px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.thankyou-content p,
.error-content p {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.policy-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 48px 0;
  text-align: center;
}

.policy-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.update-date {
  font-size: 14px;
  opacity: 0.9;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 16px;
}

.policy-text h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--dark);
}

.policy-text h3 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--dark);
}

.policy-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .products-grid,
  .resource-list,
  .topic-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .thankyou-content h1,
  .error-content h2 {
    font-size: 28px;
  }
  
  .error-code {
    font-size: 72px;
  }
  
  .policy-hero h1 {
    font-size: 28px;
  }
}

@media (min-width: 320px) {
  body {
    font-size: 14px;
  }
}
