/* Base Styles */
:root {
  --primary-color: #0d6efd;
  --primary-dark: #0b5ed7;
  --secondary-color: #3c6382;
  --accent-color: #fd7e14;
  --background-light: #f8f9fa;
  --text-dark: #212529;
  --text-light: #6c757d;
  --text-white: #ffffff;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --border-radius: 8px;
  --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;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

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

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

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

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

ul {
  list-style: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(13, 110, 253, 0.2);
}

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

.btn-secondary:hover {
  background-color: #345271;
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(60, 99, 130, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

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

.highlight-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.highlight-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.highlight-btn:hover::before {
  left: 100%;
}

/* Header & Navigation */
header {
  background-color: #ffffff;
  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 img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links li a:hover::after, 
.nav-links li a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
  background-color: #ffffff;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.post-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  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 {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 20px;
}

.post-category {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.post-content h3 a {
  color: var(--text-dark);
}

.post-content h3 a:hover {
  color: var(--primary-color);
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background-color: var(--background-light);
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

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

/* Industry Stats Section */
.industry-stats {
  padding: 80px 0;
  background-color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.stat-icon {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.stat-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.stat-card p {
  color: var(--text-light);
}

/* User Message Section */
.user-message {
  padding: 80px 0;
  background-color: var(--background-light);
}

.message-box {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.message-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.message-box p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.message-box .btn {
  margin-top: 1.5rem;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 0 20px;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p svg {
  color: var(--primary-color);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

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

.cookie-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

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

.cookie-more-info {
  font-size: 0.9rem;
}

/* Blog Page Styles */
.page-header {
  background: linear-gradient(135deg, #3c6382 0%, #0a3d62 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

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

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

.blog-content {
  padding: 60px 0;
}

.blog-filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.search-box {
  display: flex;
  flex: 1;
  max-width: 400px;
}

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

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

.category-filter select {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  min-width: 200px;
}

.blog-grid {
  display: grid;
  gap: 40px;
}

.blog-card {
  display: flex;
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-image {
  flex: 0 0 350px;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-details {
  flex: 1;
  padding: 30px;
}

.blog-details h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.blog-details h2 a {
  color: var(--text-dark);
}

.blog-details h2 a:hover {
  color: var(--primary-color);
}

.blog-meta {
  display: flex;
  gap: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-details p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.pagination a, .pagination span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dark);
  transition: var(--transition);
}

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

.pagination-numbers {
  display: flex;
  gap: 5px;
}

.pagination-numbers a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

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

.pagination-prev.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Blog Post Styles */
.blog-post {
  padding: 60px 0;
}

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

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.post-category {
  color: var(--primary-color);
  font-weight: 600;
}

.post-header h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
}

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

.post-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text-dark);
}

.post-content h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.post-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.post-content ul, .post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content ul li, .post-content ol li {
  margin-bottom: 10px;
}

.post-content img {
  margin: 30px auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.post-content figcaption {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 10px;
}

.post-quote {
  margin: 40px 0;
  padding: 30px;
  background: var(--background-light);
  border-left: 5px solid var(--primary-color);
  border-radius: var(--border-radius);
}

.post-quote blockquote {
  font-style: italic;
  color: var(--text-dark);
}

.post-quote cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
}

.info-box {
  margin: 30px 0;
  padding: 25px;
  background: rgba(13, 110, 253, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(13, 110, 253, 0.2);
}

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

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

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

.post-tags span {
  font-weight: 600;
  color: var(--text-dark);
}

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

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

.post-share {
  display: flex;
  gap: 10px;
  align-items: center;
}

.post-share span {
  font-weight: 600;
  color: var(--text-dark);
}

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

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

.post-author-bio {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  padding: 30px;
  background: var(--background-light);
  border-radius: var(--border-radius);
}

.author-image {
  flex: 0 0 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.author-info h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.author-info p {
  color: var(--text-light);
}

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

.related-posts h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.related-post h3 {
  padding: 15px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.related-post a {
  color: var(--text-dark);
}

.related-post a:hover {
  color: var(--primary-color);
}

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

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 20px;
}

.member-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

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

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

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

.values-section {
  padding: 60px 0;
}

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

.value-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-light);
}

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

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 20px;
  transition: var(--transition);
}

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

.partner-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #3c6382 0%, #0a3d62 100%);
  color: #ffffff;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

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

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

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

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 5px;
}

.social-connect {
  margin-top: 40px;
}

.social-connect h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

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

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

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.form-submit {
  margin-top: 30px;
}

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

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

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thank-you-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-icon {
  color: var(--success-color);
  font-size: 3rem;
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 25px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .posts-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    height: auto;
    padding: 30px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .blog-card {
    flex-direction: column;
  }
  
  .blog-image {
    flex: 0 0 200px;
  }
  
  .post-footer {
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .posts-grid, .stats-grid, .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .blog-filters {
    flex-direction: column;
    gap: 20px;
  }
  
  .search-box {
    max-width: 100%;
  }
}
