
:root {
  --primary: #ff4d4d;
  --secondary: #333;
  --light: #f8f8f8;
  --dark: #222;
  --gray: #777;
  --light-gray: #eaeaea;
  --critical: #d32f2f;
  --high-risk: #f57c00;
  --moderate: #ffa000;
}

/* Alert Bar */
.alert-bar {
  background-color: var(--primary);
  color: white;
  padding: 12px 0;
  font-weight: 600;
  text-align: center;
  margin-top: 70px;
}

.alert-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.alert-bar i {
  margin-right: 8px;
}

.alert-cta {
  color: white;
  font-weight: bold;
  text-decoration: underline;
  margin-left: 15px;
}

.alert-cta:hover {
  color: #ffcccb;
}

/* Blog Container */
.blog-container {
  max-width: 100%;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--secondary);
}

/* Hero Section */
.blog-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 40px;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  padding: 40px 5%;
  color: white;
}

.blog-hero h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero h1 span {
  display: block;
  font-size: 1.8rem;
  color: #ff9999;
}

.publish-date {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.warning-list {
  padding-left: 0;
  margin: 20px 0;
}

.warning-list li {
  list-style: none;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.warning-list i {
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 3px;
}

/* Main Layout */
.blog-layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.blog-main-content {
  flex: 0 0 75%;
}

.blog-sidebar {
  flex: 0 0 25%;
}

/* Content Styling */
.blog-intro {
  margin-bottom: 40px;
}

.intro-summary {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 20px;
}

.content-section {
  margin-bottom: 50px;
}

.content-section h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 10px;
}

.content-section h2 i {
  margin-right: 10px;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.reason-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--primary);
}

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

.reason-card h3 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 15px;
}

/* Symptom Grid */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.symptom-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.symptom-card.urgent {
  border-left: 4px solid var(--critical);
}

.symptom-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 5px 0 0 15px;
  font-size: 2rem;
  font-weight: bold;
}

.symptom-card h3 {
  margin-top: 0;
  color: var(--dark);
  padding-right: 30px;
}

.urgency {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed var(--light-gray);
  font-weight: bold;
  color: var(--primary);
}

/* Process Timeline */
.process-timeline {
  margin: 40px 0;
  position: relative;
  padding-left: 50px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.process-step {
  position: relative;
  padding-bottom: 30px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-number {
  position: absolute;
  left: -50px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
}

.step-content h3 {
  margin-top: 0;
  color: var(--primary);
}

/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.option-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.option-card.premium {
  border-top: 4px solid var(--primary);
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.15);
}

.option-card.performance {
  border-top: 4px solid var(--dark);
}

.option-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.option-header h3 {
  margin: 0;
  color: var(--dark);
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-top: 10px;
}

.option-card.performance .price {
  color: var(--dark);
}

.option-features {
  padding: 20px;
  list-style: none;
  margin: 0;
  flex-grow: 1;
}

.option-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-features i {
  color: var(--primary);
}

.option-cta {
  display: block;
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.option-cta:hover {
  background: #e04444;
}

.option-card.performance .option-cta {
  background: var(--dark);
}

.option-card.performance .option-cta:hover {
  background: #111;
}

/* Emergency CTA */
.emergency-cta-section {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
  margin: 50px 0;
  text-align: center;
}

.emergency-cta-section h2 {
  color: var(--critical);
  border-bottom: none;
}

.emergency-cta-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.emergency-cta {
  display: inline-block;
  background: var(--critical);
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.emergency-cta:hover {
  background: #b71c1c;
}

.secondary-cta {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  border: 1px solid var(--primary);
  transition: all 0.3s;
}

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

.guarantee {
  margin-top: 20px;
  font-style: italic;
  color: var(--gray);
}

.guarantee i {
  color: var(--primary);
  margin-right: 5px;
}

/* Sidebar */
.sidebar-cta {
  background: var(--primary);
  color: white;
  padding: 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  text-align: center;
}

.sidebar-cta h3 {
  margin-top: 0;
  color: white;
}

.sidebar-cta p {
  margin-bottom: 20px;
}

.cta-button {
  display: block;
  background: white;
  color: var(--primary);
  padding: 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 15px;
  transition: background 0.3s;
  text-align: center;
}

.cta-button:hover {
  background: #f0f0f0;
}

.secondary-button {
  display: block;
  background: transparent;
  color: white;
  padding: 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 10px;
  border: 1px solid white;
  transition: all 0.3s;
  text-align: center;
}

.secondary-button:hover {
  background: rgba(255,255,255,0.2);
}

.related-posts {
  border: 1px solid var(--light-gray);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.related-posts h4 {
  margin-top: 0;
  color: var(--primary);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 10px;
}

.related-posts-iframe {
  width: 100%;
  height: 1000px !important;
  border: none;
}

.warning-signs {
  background: #fff8f8;
  padding: 20px;
  border-radius: 5px;
  border-left: 4px solid var(--primary);
}

.warning-signs h4 {
  margin-top: 0;
  color: var(--critical);
}

.warning-signs ul {
  padding-left: 0;
}

.warning-signs li {
  list-style: none;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.warning-signs i {
  color: var(--critical);
  position: absolute;
  left: 0;
  top: 3px;
}

/* Footer Styles */
.footer {
  background-color: #222;
  color: white;
  padding: 40px 0 20px;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

.contact-info {
  font-style: normal;
}

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

.contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

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

.social-media-icons a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-media-icons a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 0.9rem;
}

.copyright a {
  color: #ccc;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-layout {
    flex-direction: column;
  }
  
  .blog-main-content,
  .blog-sidebar {
    flex: 0 0 100%;
  }
  
  .blog-sidebar {
    order: 2;
    margin-top: 40px;
  }
  
  .blog-hero h1 {
    font-size: 2rem;
  }
  
  .blog-hero h1 span {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    height: 300px;
  }
  
  .alert-bar .container {
    flex-direction: column;
    gap: 5px;
  }
  
  .alert-cta {
    margin-left: 0;
    margin-top: 5px;
  }
  
  .blog-hero h1 {
    font-size: 1.8rem;
  }
  
  .blog-hero h1 span {
    font-size: 1.3rem;
  }
  
  .reasons-grid,
  .symptom-grid,
  .options-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    padding-left: 40px;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .step-number {
    left: -40px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 1.6rem;
  }
  
  .publish-date {
    font-size: 0.8rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
}
