/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Geometric Structured Design - Sharp Angles and Precise Layouts */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography - Angular Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Header - Geometric Structure */
header {
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  border-bottom: 4px solid #c1570a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(13, 58, 107, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Main Navigation - Sharp Structure */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #c1570a;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #c1570a;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle Button - Geometric */
.mobile-menu-toggle {
  display: none;
  background: #c1570a;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(193, 87, 10, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #e67e22;
  transform: scale(1.05);
}

/* Mobile Menu Overlay - Geometric Slide */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #0d3a6b 0%, #1a5490 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #c1570a;
  border-color: #c1570a;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #c1570a;
  padding-left: 12px;
  border-bottom-color: #c1570a;
}

/* Hero Section - Geometric Strong Design */
.hero {
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 50%, #2c3e50 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(193, 87, 10, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Page Hero - Geometric */
.page-hero {
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: 80px;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  margin-bottom: 0;
}

.page-hero .updated {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.9;
}

/* Buttons - Sharp Geometric */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary {
  background: #c1570a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(193, 87, 10, 0.3);
}

.btn-primary:hover {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 87, 10, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0d3a6b;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Featured News - Geometric Grid */
.featured-news {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.featured-news h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.news-card {
  background: #ffffff;
  padding: 32px;
  border-left: 4px solid #c1570a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 0);
}

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

.news-card.featured {
  flex: 1 1 100%;
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  color: #ffffff;
  border-left-color: #c1570a;
}

.news-card h3 {
  color: #0d3a6b;
  margin-bottom: 16px;
  font-size: 22px;
}

.news-card.featured h3 {
  color: #ffffff;
}

.news-card p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.news-card .meta {
  display: block;
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 600;
  margin-top: 16px;
}

.news-card.featured .meta {
  color: rgba(255, 255, 255, 0.9);
}

/* Categories - Geometric Cards */
.categories {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.categories h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  background: #ffffff;
  padding: 32px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: #c1570a;
  box-shadow: 0 12px 32px rgba(193, 87, 10, 0.2);
}

.category-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: hue-rotate(200deg);
}

.category-card h3 {
  color: #0d3a6b;
  margin-bottom: 12px;
  font-size: 20px;
}

.category-card p {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 0;
}

/* Newsletter Section - Geometric */
.newsletter {
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #c1570a;
}

.newsletter h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter p {
  font-size: 18px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 240px;
  padding: 16px;
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Services Preview - Geometric Structure */
.services-preview {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.services-preview h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  border-top: 4px solid #c1570a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: #0d3a6b;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #2c3e50;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #c1570a;
  margin-top: auto;
}

/* Trust Indicators - Geometric Stats */
.trust-indicators {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  color: #ffffff;
  margin-bottom: 60px;
}

.trust-indicators h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  margin-bottom: 20px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #c1570a;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* Content Wrapper - Sidebar Layout */
.content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.main-content {
  flex: 1 1 65%;
  min-width: 300px;
}

.sidebar {
  flex: 1 1 30%;
  min-width: 280px;
}

.widget {
  background: #ffffff;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 4px solid #c1570a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.widget h3 {
  color: #0d3a6b;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popular-list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.popular-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-list a {
  color: #2c3e50;
  font-weight: 600;
  transition: color 0.3s ease;
}

.popular-list a:hover {
  color: #c1570a;
}

/* Article Cards */
.article-card {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #0d3a6b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 0);
}

.article-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-left-width: 8px;
}

.article-card h3 {
  color: #0d3a6b;
  margin-bottom: 16px;
  font-size: 22px;
}

.article-card p {
  color: #2c3e50;
  margin-bottom: 16px;
}

.article-card .meta {
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 600;
}

/* Subcategories */
.subcategories {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.subcategories h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 20px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  margin-bottom: 20px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.category-link:hover {
  border-color: #c1570a;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(193, 87, 10, 0.2);
}

.category-link img {
  width: 48px;
  height: 48px;
}

.category-link span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0d3a6b;
  font-size: 16px;
}

/* Analysis Sections */
.featured-analysis {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.analysis-featured h2 {
  color: #0d3a6b;
  margin-bottom: 32px;
  text-align: center;
}

.analysis-card-large {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 48px;
  border: 3px solid #c1570a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
}

.analysis-card-large h3 {
  color: #0d3a6b;
  font-size: 32px;
  margin-bottom: 16px;
}

.analysis-card-large .author {
  color: #c1570a;
  font-weight: 700;
  margin-bottom: 24px;
}

.key-insights {
  margin: 32px 0;
  padding-left: 24px;
}

.key-insights li {
  list-style: square;
  color: #0d3a6b;
  margin-bottom: 12px;
  font-weight: 600;
}

.analysis-grid-section {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.analysis-grid-section h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.analysis-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.analysis-card {
  background: #ffffff;
  padding: 32px;
  border-top: 4px solid #0d3a6b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
}

.analysis-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: #e0e0e0;
  color: #2c3e50;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.badge.premium {
  background: #c1570a;
  color: #ffffff;
}

/* Pricing Tables - Geometric */
.pricing-table {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pricing-card {
  background: #ffffff;
  padding: 40px;
  border: 3px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 380px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.pricing-card.featured {
  border-color: #c1570a;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(193, 87, 10, 0.2);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  color: #0d3a6b;
  margin-bottom: 24px;
  font-size: 24px;
}

.price {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #c1570a;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

.price .period {
  font-size: 18px;
  color: #7f8c8d;
  font-weight: 400;
}

.pricing-card p {
  color: #2c3e50;
  margin-bottom: 32px;
}

.features {
  text-align: left;
  margin: 32px 0;
}

.features li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #2c3e50;
}

.features li:last-child {
  border-bottom: none;
}

/* Reports Section */
.report-categories {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.report-categories h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.count {
  display: block;
  font-size: 14px;
  color: #7f8c8d;
  margin-top: 8px;
}

.featured-reports {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.featured-reports h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.reports-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.report-card {
  background: #ffffff;
  padding: 40px;
  border-left: 4px solid #c1570a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 24px);
  min-width: 320px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.report-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.report-card h3 {
  color: #0d3a6b;
  margin-bottom: 16px;
  font-size: 24px;
}

.report-details {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.report-details li {
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 600;
}

.price-large {
  font-size: 56px;
  font-weight: 700;
  color: #c1570a;
  display: block;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

/* Testimonials - High Contrast */
.testimonials {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-left: 4px solid #c1570a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-card .author {
  color: #0d3a6b;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-align: right;
  margin-top: auto;
}

/* Contact Section */
.contact-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.info-card {
  background: #ffffff;
  padding: 40px;
  text-align: center;
  border-top: 4px solid #c1570a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  margin-bottom: 20px;
}

.info-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.info-card h3 {
  color: #0d3a6b;
  margin-bottom: 16px;
}

.info-card a {
  color: #c1570a;
  font-weight: 600;
}

.info-card a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #c1570a;
}

.form-info {
  margin-bottom: 32px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.field-group label {
  font-weight: 700;
  color: #2c3e50;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #c1570a;
  box-shadow: 0 0 0 3px rgba(193, 87, 10, 0.1);
}

.field-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.field-group.checkbox input {
  width: 20px;
  height: 20px;
}

.field-group.checkbox label {
  margin-bottom: 0;
  text-transform: none;
}

/* Departments */
.departments {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.departments h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.department-card {
  background: #ffffff;
  padding: 32px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.department-card:hover {
  border-color: #c1570a;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.department-card h3 {
  color: #0d3a6b;
  margin-bottom: 16px;
  font-size: 18px;
}

.department-card p {
  color: #7f8c8d;
  font-size: 14px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0d3a6b;
}

.legal-content h2 {
  color: #0d3a6b;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #c1570a;
  padding-bottom: 12px;
}

.legal-content h3 {
  color: #1a5490;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  list-style: square;
  margin-bottom: 12px;
  color: #2c3e50;
}

/* Team Sections */
.leadership {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.leadership h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  background: #ffffff;
  padding: 40px;
  border: 3px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
  max-width: 500px;
  margin-bottom: 20px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.team-member:hover {
  border-color: #c1570a;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.member-info h3 {
  color: #0d3a6b;
  margin-bottom: 8px;
  font-size: 24px;
}

.role {
  color: #c1570a;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

.bio {
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.7;
}

.contact {
  color: #7f8c8d;
  font-size: 14px;
}

.editorial-team,
.analysts {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.editorial-team h2,
.analysts h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.journalists-grid,
.analysts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.journalist-card,
.analyst-card {
  background: #ffffff;
  padding: 24px;
  border-top: 4px solid #c1570a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.journalist-card h4,
.analyst-card h4 {
  color: #0d3a6b;
  margin-bottom: 12px;
  font-size: 18px;
}

.specialization,
.credentials {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

/* About Sections */
.about-story {
  padding: 60px 20px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-story h2 {
  color: #0d3a6b;
  text-align: center;
  margin-bottom: 32px;
}

.about-story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.values {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.values h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  background: #ffffff;
  padding: 32px;
  text-align: center;
  border: 3px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.value-card:hover {
  border-color: #c1570a;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.value-card h3 {
  color: #0d3a6b;
  margin-bottom: 16px;
}

.statistics {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  color: #ffffff;
  margin-bottom: 60px;
}

.statistics h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  margin-bottom: 20px;
}

/* 404 Error Page */
.error-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  color: #ffffff;
  margin-bottom: 60px;
}

.error-content h1 {
  font-size: 120px;
  color: #c1570a;
  margin-bottom: 24px;
  font-weight: 700;
}

.error-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #ffffff;
}

.helpful-links {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.helpful-links h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card {
  background: #ffffff;
  padding: 32px;
  border: 3px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0d3a6b;
  font-size: 18px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.link-card:hover {
  border-color: #c1570a;
  color: #c1570a;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(193, 87, 10, 0.2);
}

.contact-support {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
  margin-bottom: 60px;
}

.contact-support h2 {
  color: #0d3a6b;
  margin-bottom: 24px;
}

.contact-support a {
  color: #c1570a;
  font-weight: 700;
}

/* Thank You Page */
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  color: #ffffff;
  margin-bottom: 60px;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: #27ae60;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

.thank-you-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #ffffff;
}

.subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.next-steps h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.step-card {
  background: #ffffff;
  padding: 32px;
  border-top: 4px solid #c1570a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  text-align: center;
  margin-bottom: 20px;
}

.step-number {
  display: block;
  width: 48px;
  height: 48px;
  background: #c1570a;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  color: #0d3a6b;
  margin-bottom: 12px;
}

.response-time {
  text-align: center;
  color: #7f8c8d;
  font-size: 14px;
}

.suggested-content {
  padding: 60px 20px;
  background: #f8f9fa;
  margin-bottom: 60px;
}

.suggested-content h2 {
  text-align: center;
  color: #0d3a6b;
  margin-bottom: 48px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.content-card {
  background: #ffffff;
  padding: 32px;
  border-left: 4px solid #c1570a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  margin-bottom: 20px;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.content-card h3 {
  color: #0d3a6b;
  margin-bottom: 12px;
}

.cta-section {
  padding: 40px 20px;
  text-align: center;
}

/* Footer - Geometric Structure */
footer {
  background: linear-gradient(135deg, #2c3e50 0%, #0d3a6b 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 4px solid #c1570a;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h3 {
  color: #c1570a;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #c1570a;
  padding-left: 8px;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-contact h3 {
  color: #c1570a;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 0;
}

/* Cookie Consent Banner - Geometric */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0d3a6b 0%, #1a5490 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-top: 4px solid #c1570a;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.accept-all {
  background: #27ae60;
  color: #ffffff;
}

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

.reject-all {
  background: #e74c3c;
  color: #ffffff;
}

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

.cookie-settings {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-settings:hover {
  background: #ffffff;
  color: #0d3a6b;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #7f8c8d;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #e74c3c;
}

.modal-content h2 {
  color: #0d3a6b;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
}

.cookie-category h3 {
  color: #1a5490;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 24px;
  height: 24px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .news-card,
  .category-card,
  .service-card,
  .analysis-card,
  .pricing-card,
  .report-card {
    flex: 1 1 100%;
  }

  .stat-item {
    flex: 1 1 calc(50% - 32px);
  }

  .content-wrapper {
    flex-direction: column;
  }

  .main-content,
  .sidebar {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1 1 100%;
  }

  .error-content h1 {
    font-size: 72px;
  }

  .team-member,
  .testimonial-card {
    flex: 1 1 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .email-input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .page-hero {
    padding: 40px 20px;
  }

  .section {
    padding: 30px 15px;
  }

  .stat-item {
    flex: 1 1 100%;
  }

  .stat-number {
    font-size: 36px;
  }

  .modal-content {
    padding: 24px;
  }
}