/* Base Styles and Reset */
:root {
  --primary-color: #1e4e8c;
  --secondary-color: #3498db;
  --accent-color: #f39c12;
  --text-color: #333333;
  --light-text: #757575;
  --bg-color: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #2ecc71;
  --warning-color: #e74c3c;
  --neutral-color: #95a5a6;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.1rem;
}

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

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.btn-tertiary {
  background-color: var(--light-bg);
  color: var(--light-text);
  border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
  background-color: var(--border-color);
  color: var(--text-color);
}

.btn-submit {
  background-color: var(--primary-color);
  width: 100%;
  padding: 14px;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 40px;
  margin-right: 10px;
  border-radius: 5px;
}

nav ul {
  display: flex;
  margin-bottom: 0;
}

nav ul li {
  margin-left: 30px;
  list-style-type: none;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.real-time-clock {
  font-weight: 600;
  color: var(--primary-color);
  margin-left: 20px;
  min-width: 90px;
  text-align: right;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(30, 78, 140, 0.8), rgba(30, 78, 140, 0.9)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(30, 78, 140, 0.8), rgba(30, 78, 140, 0.9)), url('images/page-header.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

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

.post-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.post-meta {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.post-meta span {
  color: var(--primary-color);
  font-weight: 500;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 20px;
  color: white;
}

.newsletter p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

#newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

#newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

#newsletter-form button {
  padding: 14px 24px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

#newsletter-form button:hover {
  background-color: #e67e22;
}

/* Economic Indicators Section */
.economic-indicators {
  padding: 80px 0;
}

.economic-indicators h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.indicator-card {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.indicator-card:hover {
  transform: translateY(-5px);
}

.indicator-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.indicator-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.indicator-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.indicator-trend {
  font-size: 0.9rem;
  font-weight: 600;
}

.indicator-trend.up {
  color: var(--success-color);
}

.indicator-trend.down {
  color: var(--warning-color);
}

.indicator-trend.neutral {
  color: var(--neutral-color);
}

/* Blog Page Styles */
.blog-content {
  padding: 60px 0;
}

.blog-filter {
  margin-bottom: 40px;
}

.search-box {
  display: flex;
  margin-bottom: 20px;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.search-box button {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-box button:hover {
  background-color: var(--secondary-color);
}

.filter-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-categories span {
  font-weight: 600;
  margin-right: 10px;
}

.filter-categories button {
  padding: 8px 16px;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-categories button.active, .filter-categories button:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-post {
  display: flex;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blog-post .post-image {
  flex: 0 0 300px;
  height: auto;
}

.blog-post .post-content {
  flex: 1;
  padding: 30px;
  position: relative;
}

.post-category {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.pagination a.active, .pagination a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination a.next {
  width: auto;
  border-radius: 20px;
  padding: 0 20px;
}

/* About Page Styles */
.about-content {
  padding: 60px 0;
}

.about-intro {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.about-image {
  flex: 0 0 45%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--primary-color);
  margin-top: 0;
}

.our-values {
  margin-bottom: 60px;
}

.our-values h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.our-team h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team-member h3 {
  margin: 15px 0 5px;
}

.team-member p {
  color: var(--light-text);
  padding: 0 15px;
  margin-bottom: 15px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-bottom: 20px;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--primary-color);
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

.company-info {
  margin-top: 60px;
}

.company-info h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.info-item {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cta {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-top: 60px;
}

.cta h2 {
  color: white;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 30px;
}

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

.cta .btn:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Contact Page Styles */
.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 30px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 5px;
}

.subtitle {
  color: var(--light-text);
  font-size: 0.9rem;
}

.social-contact h3 {
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--primary-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-form-container h2 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 30px;
}

.contact-form {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-top: 5px;
  margin-right: 10px;
}

.form-group.checkbox label {
  font-weight: 400;
}

.map-section {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.map-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq {
  padding: 60px 0;
}

.faq h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 30px;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

/* Single Post Styles */
.single-post {
  padding: 60px 0;
}

.post-header {
  margin-bottom: 30px;
}

.post-header h1 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.post-header .post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}

.post-author {
  display: flex;
  align-items: center;
}

.post-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.post-date, .post-reading-time {
  display: flex;
  align-items: center;
}

.post-date i, .post-reading-time i {
  margin-right: 5px;
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-caption {
  text-align: center;
  padding: 10px;
  background-color: var(--light-bg);
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.post-content {
  line-height: 1.8;
}

.post-content h2 {
  color: var(--primary-color);
  margin-top: 40px;
}

.post-content blockquote {
  background-color: var(--light-bg);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  font-size: 1.1rem;
  font-style: italic;
}

.post-content blockquote p {
  margin-bottom: 10px;
}

.post-content blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

.info-box {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
}

.info-box h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.data-visualization {
  margin: 30px 0;
  text-align: center;
}

.data-visualization h3 {
  margin-bottom: 20px;
}

.chart-placeholder {
  background-color: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.chart-caption {
  color: var(--light-text);
  font-size: 0.9rem;
}

.expert-quote {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: var(--box-shadow);
}

.expert-quote p {
  font-style: italic;
  margin-bottom: 20px;
}

.expert-info {
  display: flex;
  align-items: center;
}

.expert-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.expert-info strong {
  display: block;
  margin-bottom: 5px;
}

.expert-info span {
  color: var(--light-text);
  font-size: 0.9rem;
}

.case-study {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
}

.case-study h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.case-study h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.post-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--light-bg);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--text-color);
  transition: var(--transition);
}

.share-facebook:hover {
  background-color: #3b5998;
  color: white;
}

.share-twitter:hover {
  background-color: #1da1f2;
  color: white;
}

.share-linkedin:hover {
  background-color: #0077b5;
  color: white;
}

.share-email:hover {
  background-color: #ea4335;
  color: white;
}

.author-bio {
  margin-top: 40px;
  display: flex;
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 30px;
}

.author-bio img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 25px;
}

.author-details h3 {
  margin-top: 0;
  margin-bottom: 5px;
  color: var(--light-text);
  font-size: 1rem;
}

.author-details h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.author-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  transition: var(--transition);
}

.author-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

.related-posts {
  margin-top: 60px;
}

.related-posts h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.related-post {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
}

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

.related-post h3 {
  padding: 15px 15px 10px;
  font-size: 1.1rem;
  margin: 0;
}

.related-post p {
  padding: 0 15px;
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.related-post a {
  display: block;
  padding: 0 15px 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.post-comments {
  margin-top: 60px;
}

.post-comments h2 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.comment {
  display: flex;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}

.comment-avatar {
  flex: 0 0 60px;
  margin-right: 20px;
}

.comment-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.comment-header h4 {
  margin: 0;
}

.comment-header span {
  color: var(--light-text);
  font-size: 0.9rem;
}

.comment-actions {
  margin-top: 15px;
  display: flex;
  gap: 20px;
}

.comment-actions a {
  color: var(--light-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.comment-actions a i {
  margin-right: 5px;
}

.comment-actions a:hover {
  color: var(--primary-color);
}

.load-more-comments {
  text-align: center;
  margin: 30px 0;
}

.comment-form {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
}

.comment-form h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: #1c2331;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-about h3, .footer-links h3, .footer-legal h3, .footer-contact h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul, .footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-legal li {
  margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
  color: #b3b3b3;
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--secondary-color);
}

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

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 20px;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.cookie-link {
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light-text);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--text-color);
}

.modal-content i {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.close-btn {
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-intro {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .blog-post .post-image {
    flex: none;
    height: 250px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease;
    z-index: 900;
  }
  
  nav ul.active {
    left: 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .real-time-clock {
    display: none;
  }
  
  .indicators-grid, .values-grid, .team-grid, .info-grid, .related-grid {
    grid-template-columns: 1fr;
  }
  
  #newsletter-form {
    flex-direction: column;
  }
  
  #newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  #newsletter-form button {
    border-radius: 4px;
    width: 100%;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-bio img {
    margin: 0 auto 20px;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .post-header .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .pagination a, .pagination span {
    width: 35px;
    height: 35px;
    margin: 0 3px;
  }
  
  .comment {
    flex-direction: column;
  }
  
  .comment-avatar {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .comment-header {
    flex-direction: column;
  }
  
  .comment-header span {
    margin-top: 5px;
  }
}
