/* 
  Kazakh News Agency - Main Stylesheet
  Design: Modern, Clean, Professional
  Font: Poppins (300/400/600)
  Max Width: 1200px
*/

/* ========== CSS RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066cc;
  --secondary-color: #003d7a;
  --accent-color: #ffd700;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  max-width: 700px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

/* ========== CONTAINER & LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
}

/* ========== HEADER & NAVIGATION ========== */
.site-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-color);
}

.header-top {
  background-color: var(--secondary-color);
  color: white;
  padding: 8px 0;
  font-size: 0.875rem;
}

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

.header-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-contact a {
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-contact a:hover {
  color: var(--accent-color);
}

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

.header-social a {
  color: white;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.header-social a:hover {
  color: var(--accent-color);
}

.header-main {
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 5px 10px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 5px;
}

.main-nav li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
}

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

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(135deg, rgba(0, 61, 122, 0.95), rgba(0, 102, 204, 0.9)),
              url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1600&q=80') center/cover;
  color: white;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path></svg>') bottom center no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

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

/* ========== BREAKING NEWS TICKER ========== */
.breaking-news {
  background-color: var(--danger-color);
  color: white;
  padding: 10px 0;
  overflow: hidden;
}

.breaking-news-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.breaking-label {
  background-color: rgba(255,255,255,0.2);
  padding: 5px 15px;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 3px;
  white-space: nowrap;
}

.breaking-text {
  font-weight: 400;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ========== CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: 600;
}

.card-title a {
  color: var(--secondary-color);
}

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

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

.card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
  flex-grow: 1;
}

.card-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-link:hover {
  gap: 10px;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.feature-title {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.feature-description {
  color: var(--text-light);
  margin: 0 auto;
}

/* ========== STATISTICS SECTION ========== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 60px 0;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

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

.cta-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0 auto 30px;
}

/* ========== FOOTER ========== */
.site-footer {
  background-color: var(--secondary-color);
  color: white;
  padding-top: 60px;
}

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

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
  max-width: 100%;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

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

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

.footer-contact i {
  color: var(--accent-color);
  margin-top: 3px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

/* ========== DISCLAIMER ========== */
.disclaimer-section {
  background-color: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid var(--accent-color);
}

.disclaimer-title {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.disclaimer-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 100%;
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  text-align: center;
}

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

.footer-bottom a {
  color: var(--accent-color);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin: 0;
  max-width: 100%;
}

.cookie-text a {
  color: var(--accent-color);
  text-decoration: underline;
}

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

.btn-accept {
  background-color: var(--success-color);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-accept:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.btn-decline {
  background-color: transparent;
  color: white;
  padding: 10px 25px;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* ========== CONTACT FORM ========== */
.contact-section {
  padding: 60px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
}

.contact-details a {
  color: var(--primary-color);
}

.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.form-message {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 60px 0;
}

.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: var(--bg-white);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question.active {
  background-color: var(--primary-color);
  color: white;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 20px 25px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-answer.active {
  max-height: 500px;
}

/* ========== BLOG ARTICLE PAGE ========== */
.article-header {
  padding: 40px 0 20px;
}

.article-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.article-title {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  color: var(--text-light);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-featured-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 40px;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.article-content p {
  max-width: 100%;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-content h2 {
  color: var(--secondary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 20px 30px;
  background-color: var(--bg-light);
  border-left: 5px solid var(--primary-color);
  font-style: italic;
  color: var(--text-light);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.tag {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

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

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

/* ========== SIDEBAR ========== */
.sidebar {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.sidebar h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent-color);
}

.sidebar-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.sidebar-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.sidebar-content {
  flex: 1;
}

.sidebar-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 5px;
  line-height: 1.4;
}

.sidebar-title a {
  color: var(--secondary-color);
}

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

.sidebar-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== BLOG GRID ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px - 1024px) - 2 columns */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .article-title {
    font-size: 2.5rem;
  }
}

/* Mobile (up to 768px) - 1 column */
@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 78px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  
  .main-nav li {
    width: 100%;
  }
  
  .main-nav li a {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-accept,
  .btn-decline {
    width: 100%;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .article-featured-image {
    height: 300px;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .logo-name {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ========== PRINT STYLES ========== */
@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .breaking-news,
  .nav-toggle {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  .article-content {
    max-width: 100%;
  }
}