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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.primary-navigation {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active-link {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 2.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  padding-left: 2rem;
}

.main-heading {
  font-size: 3.5rem;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  min-height: 80px;
}

.hero-description {
  font-size: 1.3rem;
  color: #546e7a;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: #27ae60;
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.cta-button:hover {
  background: #229954;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

.hero-visual img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #1e3a5f;
  margin-bottom: 3rem;
  font-weight: 700;
}

.features-overview {
  padding: 5rem 2.5rem;
  background: white;
}

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

.feature-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.icon-wrapper {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: #1e3a5f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #546e7a;
  line-height: 1.7;
}

.recent-posts {
  padding: 5rem 2.5rem;
  background: #f8f9fa;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.post-preview {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.post-preview:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.post-preview img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-content {
  padding: 2rem;
}

.post-content h3 {
  color: #1e3a5f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.post-excerpt {
  color: #546e7a;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.read-more {
  color: #27ae60;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #229954;
}

.glossary-section {
  padding: 5rem 2.5rem;
  background: white;
}

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

.glossary-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #27ae60;
}

.glossary-item h4 {
  color: #1e3a5f;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.glossary-item p {
  color: #546e7a;
  line-height: 1.7;
}

.site-footer {
  background: #1e3a5f;
  color: white;
  padding: 3rem 2.5rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #27ae60;
}

.footer-column p {
  line-height: 1.8;
  color: #e0f2f1;
}

.company-reg {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #b0bec5;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #e0f2f1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #27ae60;
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #b0bec5;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  padding: 2rem;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text h3 {
  color: #1e3a5f;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.cookie-text p {
  color: #546e7a;
  line-height: 1.7;
}

.cookie-text a {
  color: #27ae60;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accept-btn {
  background: #27ae60;
  color: white;
}

.accept-btn:hover {
  background: #229954;
}

.reject-btn {
  background: #e74c3c;
  color: white;
}

.reject-btn:hover {
  background: #c0392b;
}

.customize-btn {
  background: #546e7a;
  color: white;
}

.customize-btn:hover {
  background: #455a64;
}

@media (max-width: 968px) {
  .nav-links {
    gap: 1rem;
  }
  
  .hero-banner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  
  .main-heading {
    font-size: 2.5rem;
  }
  
  .hero-content {
    padding-left: 0;
  }
  
  .features-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
}