/* ===== Base Styles & Variables ===== */
:root {
  --primary-color: #ed0404;
  --secondary-color: #ed0404;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #f9f9f9;
  --bg-dark: #333;
  --transition-speed: 0.3s;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --border-radius: 8px;
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed);
}

/* ===== Layout Components ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.header-container {
  width: 100%;
  position: relative;
  z-index: 1000;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 1rem;
  font-size: 0.875rem;
  text-align: center;
  background-color: #f1f1f1;
  color: #666;
  margin: 1rem auto;
  max-width: var(--container-width);
  border-radius: var(--border-radius);
}

.breadcrumb a {
  color: var(--secondary-color);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== Updates Section ===== */
.update-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
}

.update-item:hover {
  box-shadow: var(--shadow-md);
}
.product-link {
    display: inline-block;
    background-color: #ed0404; /* Blue background */
    color: white; /* White text */
    padding: 10px 15px;
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.product-link:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.update-image img {
  width: 60%;
  border-radius: var(--border-radius);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.update-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.view-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1rem;
}

.view-more:hover {
  text-decoration: underline;
}

.update-date {
  color: #666;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.no-updates {
  text-align: center;
  padding: 3rem;
  background-color: var(--text-light);
  border-radius: var(--border-radius);
}

/* ===== SEO Content Section ===== */
.seo-content {
  background-color: var(--text-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.seo-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.seo-content h2:after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.seo-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.seo-content li {
  margin-bottom: 0.75rem;
  position: relative;
}



/* ===== Media Queries ===== */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .update-item {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .seo-content {
    padding: 2rem;
  }
}