/* 
 * CS Gaming Hub - Main Stylesheet
 * A modern and responsive design for a CS2 gaming blog
 */

/* === Base Styles === */
:root {
  --primary-color: #ff5722;
  --primary-dark: #e64a19;
  --primary-light: #ffccbc;
  --secondary-color: #2196f3;
  --secondary-dark: #1976d2;
  --secondary-light: #bbdefb;
  --accent-color: #7c4dff;
  --dark-color: #1a1a2e;
  --darker-color: #16213e;
  --darkest-color: #0f3460;
  --light-color: #f8f9fa;
  --lighter-color: #ffffff;
  --gray-color: #6c757d;
  --gray-light: #e9ecef;
  --gray-dark: #343a40;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  --border-radius: 8px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* === Font Imports === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* === Reset and Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--gray-dark);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

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, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background-color: var(--gray-light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

blockquote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

blockquote cite {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-color);
  display: block;
  text-align: right;
}

code {
  font-family: var(--font-mono);
  background-color: var(--gray-light);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Header === */
header {
  background-color: var(--darker-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: var(--border-radius);
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin-left: 1.5rem;
}

nav a {
  color: var(--light-color);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  display: inline-block;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

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

/* === Hero Section === */
.hero {
  background: linear-gradient(to right, var(--darker-color), var(--darkest-color));
  color: var(--light-color);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"%3E%3Cpolygon fill="rgba(255,255,255,0.05)" points="0,100 100,0 100,100"/%3E%3C/svg%3E');
  background-size: 100% 100%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--lighter-color);
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--gray-light);
}

/* === Buttons === */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

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

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

.btn-tertiary {
  background-color: var(--gray-color);
  color: white;
}

.btn-tertiary:hover {
  background-color: var(--gray-dark);
}

/* === Featured Posts === */
.featured-posts {
  padding: 4rem 0;
  background-color: var(--lighter-color);
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.post-content p {
  color: var(--gray-color);
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

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

/* === Stats Section === */
.stats {
  padding: 4rem 0;
  background-color: var(--gray-light);
}

.stats h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.stat-card {
  background-color: var(--lighter-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.stat-info h3 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--primary-color);
}

.stat-info p {
  margin: 0;
  color: var(--gray-color);
}

/* === Subscribe Section === */
.subscribe {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
  color: white;
  text-align: center;
}

.subscribe h2 {
  color: white;
  margin-bottom: 1rem;
}

.subscribe p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.subscribe-form {
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.subscribe-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.subscribe-form .btn {
  padding: 0.75rem 1.5rem;
}

.subscribers-count {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* === Footer === */
footer {
  background-color: var(--darkest-color);
  color: var(--gray-light);
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
}

.footer-logo p {
  color: var(--gray-light);
}

.footer-links h3, 
.footer-policies h3, 
.footer-contact h3,
.footer-social h3 {
  color: var(--lighter-color);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links h3::after, 
.footer-policies h3::after, 
.footer-contact h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links li, 
.footer-policies li {
  margin-bottom: 0.75rem;
}

.footer-links a, 
.footer-policies a {
  color: var(--gray-light);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover, 
.footer-policies a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

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

.footer-contact svg {
  margin-right: 0.75rem;
  color: var(--primary-color);
}

.footer-social {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* === Page Banner === */
.page-banner {
  background: linear-gradient(to right, var(--darker-color), var(--darkest-color));
  color: var(--light-color);
  padding: 4rem 0;
  text-align: center;
}

.page-banner h1 {
  color: var(--lighter-color);
  margin-bottom: 1rem;
}

.page-banner p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray-light);
}

/* === Blog Page === */
.blog-content {
  padding: 4rem 0;
  background-color: var(--lighter-color);
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: var(--lighter-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  overflow: hidden;
}

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

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

.blog-text {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

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

.blog-text h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.blog-text p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

/* === Contact Page === */
.contact-content {
  padding: 4rem 0;
  background-color: var(--lighter-color);
}

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

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.info-text p {
  margin: 0;
  color: var(--gray-color);
}

.contact-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}

.contact-hours h3 {
  margin-top: 0;
}

.contact-form-container {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form-container h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-main);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 0.9rem;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--gray-light);
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--gray-color);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.social-links-sm {
  display: flex;
  gap: 0.75rem;
}

.social-links-sm a {
  color: var(--gray-color);
  transition: var(--transition);
}

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

/* === Map Section === */
.map {
  padding: 4rem 0;
  background-color: var(--gray-light);
}

.map h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* === FAQ Section === */
.faq {
  padding: 4rem 0;
  background-color: var(--lighter-color);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.faq-item p {
  margin: 0;
  color: var(--gray-dark);
}

/* === Blog Post === */
.blog-post {
  padding: 4rem 0;
  background-color: var(--lighter-color);
}

.post-header {
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-date, 
.post-category, 
.post-author {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

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

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

.post-author {
  color: var(--gray-dark);
  font-weight: 500;
}

.post-featured-image {
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

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

.post-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content ul, 
.post-content ol {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-left: 1.5rem;
  list-style-position: outside;
}

.post-content li {
  margin-bottom: 0.75rem;
}

.post-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-light);
}

.post-content h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--darkest-color);
}

.post-content h4 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.post-content a {
  text-decoration: underline;
  text-decoration-color: var(--primary-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

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

.post-image {
  margin: 2.5rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-caption {
  font-size: 0.9rem;
  text-align: center;
  color: var(--gray-color);
  margin-top: 0.75rem;
  font-style: italic;
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.share-post {
  margin-top: 2rem;
}

.share-post h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.social-share {
  display: flex;
  gap: 1rem;
}

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

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

.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-light);
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.related-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.related-card h4 {
  font-size: 1.1rem;
  margin: 1rem;
  line-height: 1.4;
}

.related-card .read-more {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background-color: var(--gray-light);
  color: var(--dark-color);
  font-weight: 600;
  transition: var(--transition);
}

.related-card .read-more:hover {
  background-color: var(--primary-color);
  color: white;
}

/* === Team Section === */
.about-mission {
  padding: 4rem 0;
  background-color: var(--lighter-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

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

.about-content h2 {
  margin-top: 0;
}

.team {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.team h2, 
.team-intro {
  text-align: center;
}

.team h2 {
  margin-bottom: 1rem;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray-color);
}

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

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-member h3 {
  margin: 1.5rem 0 0.25rem;
  font-size: 1.25rem;
}

.team-member p {
  margin: 0 1.5rem 1rem;
  color: var(--gray-color);
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 0 1.5rem;
}

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

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

/* === Values Section === */
.values {
  padding: 4rem 0;
  background-color: var(--lighter-color);
}

.values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.value-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.value-card p {
  margin: 0;
  color: var(--gray-color);
}

/* === Achievements Section === */
.achievements {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--darker-color), var(--darkest-color));
  color: white;
  text-align: center;
}

.achievements h2 {
  color: white;
  margin-bottom: 3rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

.achievement-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}

.achievement-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.achievement-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* === Partners Section === */
.partners {
  padding: 4rem 0;
  background-color: var(--light-color);
  text-align: center;
}

.partners h2 {
  margin-bottom: 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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

/* === CTA Section === */
.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === Cookie Consent === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
}

.cookie-content {
  max-width: 1200px;
  color: var(--light-color);
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cookie-more-info {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.cookie-more-info a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-more-info a:hover {
  color: var(--primary-color);
}

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

.modal-content {
  background-color: var(--lighter-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-icon {
  width: 70px;
  height: 70px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 1.5rem;
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .post-content p, 
  .post-content ul, 
  .post-content ol {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav li {
    margin: 0 0.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .stats-grid, 
  .values-grid, 
  .achievements-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .subscribe-form form {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links h3::after, 
  .footer-policies h3::after, 
  .footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* === Animation === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

.slideUp {
  animation: slideUp 0.5s ease forwards;
}
