@charset "utf-8";

* { margin: 0px; padding: 0px; box-sizing: border-box; }

body { font-family: Roboto, Arial, sans-serif; background-color: rgb(243, 243, 243); color: rgb(35, 35, 35); line-height: 1.7; }

@keyframes blink { 
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.header { background-color: rgb(255, 255, 255); border-bottom: 1px solid rgb(228, 228, 228); }

.header-top { max-width: 1200px; margin: 0px auto; display: flex; align-items: center; padding: 12px 20px; }

.logo { display: flex; align-items: center; gap: 2px; text-decoration: none; }

.logo-circle { width: 28px; height: 28px; background: rgb(254, 152, 1); border-radius: 50%; margin-right: 4px; }

.logo-text { font-size: 32px; font-weight: 900; color: rgb(0, 0, 0); letter-spacing: -1px; font-family: "Arial Black", Arial, sans-serif; }

.header-nav { background: rgb(254, 209, 1); }

.nav { max-width: 1200px; margin: 0px auto; display: flex; gap: 0px; padding: 0px 20px; }

.nav a { color: rgb(0, 0, 0); text-decoration: none; font-size: 12px; font-weight: 600; padding: 12px 16px; text-transform: uppercase; letter-spacing: 0.3px; transition: background 0.2s; }

.nav a:hover { background: rgba(0, 0, 0, 0.06); }

.nav a.active { background: rgba(0, 0, 0, 0.08); font-weight: 700; }

@media (max-width: 768px) {
  .header-top { padding: 10px 15px; }
  .logo-circle { width: 22px; height: 22px; }
  .logo-text { font-size: 24px; }
  .nav { overflow-x: auto; padding: 0px 10px; }
  .nav a { white-space: nowrap; padding: 10px 12px; font-size: 11px; }
}

.main-container { max-width: 1200px; margin: 0px auto; display: flex; gap: 30px; padding: 25px 20px; }

.content { max-width: 760px; background: rgb(255, 255, 255); padding: 30px 35px; flex: 1 1 0%; box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px; }

.sidebar { width: 300px; flex-shrink: 0; }

@media (max-width: 1024px) {
  .sidebar { display: none; }
  .content { max-width: 100%; }
}

.sidebar-box { background: rgb(255, 255, 255); padding: 18px; margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px; }

.sidebar-title { font-size: 13px; font-weight: 700; color: rgb(208, 1, 1); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid rgb(254, 203, 1); padding-bottom: 10px; margin-bottom: 15px; }

.sidebar-item { padding: 12px 0px; border-bottom: 1px solid rgb(237, 237, 237); font-size: 14px; line-height: 1.4; }

.sidebar-item:last-child { border-bottom: none; }

.sidebar-item a { color: rgb(35, 35, 35); text-decoration: none; transition: color 0.2s; }

.sidebar-item a:hover { color: rgb(208, 1, 1); }

.sidebar-meta { color: rgb(152, 152, 152); font-size: 11px; margin-top: 5px; }

.article-category { display: inline-block; background: rgb(254, 203, 1); color: rgb(0, 0, 0); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 4px 10px; margin-bottom: 15px; letter-spacing: 0.5px; }

.meta-info { color: rgb(120, 120, 120); font-size: 13px; margin-bottom: 18px; padding-bottom: 15px; border-bottom: 1px solid rgb(237, 237, 237); }

.meta-info span { margin-right: 15px; }

h1 { font-size: 32px; line-height: 1.25; margin-bottom: 18px; color: rgb(0, 0, 0); font-weight: 700; letter-spacing: -0.5px; }

.subheadline { font-size: 19px; color: rgb(69, 69, 69); margin-bottom: 25px; line-height: 1.5; font-weight: 400; }

h3 { font-size: 22px; margin: 35px 0px 18px; color: rgb(0, 0, 0); font-weight: 700; }

p { margin-bottom: 20px; font-size: 17px; color: rgb(52, 52, 52); }

.article-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin: 25px 0px; display: block; }

.image-caption { font-size: 13px; color: rgb(135, 135, 135); margin-top: -20px; margin-bottom: 25px; font-style: italic; }

.important-box { background: linear-gradient(135deg, rgb(254, 250, 234) 0%, rgb(254, 248, 229) 100%); border-left: 4px solid rgb(254, 203, 1); padding: 20px 22px; margin: 25px 0px; border-radius: 0px 8px 8px 0px; }

.important-box strong { color: rgb(200, 1, 1); }

.stats-highlight { background: rgb(247, 248, 249); border-radius: 8px; padding: 20px; margin: 25px 0px; text-align: center; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 15px; }

.stat-item { flex: 1 1 0%; min-width: 120px; }

.stat-number { font-size: 28px; font-weight: 700; color: rgb(208, 1, 1); display: block; }

.stat-label { font-size: 12px; color: rgb(103, 103, 103); text-transform: uppercase; letter-spacing: 0.5px; }

.testimonial { background: rgb(249, 249, 249); border-radius: 8px; padding: 22px 25px; margin: 25px 0px; position: relative; }

.testimonial::before { content: "\""; font-size: 60px; color: rgb(220, 220, 220); position: absolute; top: 5px; left: 15px; font-family: Georgia, serif; line-height: 1; }

.testimonial-text { font-style: italic; color: rgb(69, 69, 69); font-size: 16px; line-height: 1.6; padding-left: 35px; margin-bottom: 12px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; padding-left: 35px; }

.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

.testimonial-name { font-weight: 600; color: rgb(52, 52, 52); font-size: 14px; }

.testimonial-location { font-size: 12px; color: rgb(135, 135, 135); }

.orlen-link { color: rgb(1, 103, 203); text-decoration: underline; font-weight: 600; transition: color 0.2s; }

.orlen-link:hover { color: rgb(1, 69, 152); }

.cta-container { text-align: center; margin: 35px 0px; padding: 25px; background: linear-gradient(135deg, rgb(254, 244, 244) 0%, rgb(255, 255, 255) 100%); border-radius: 10px; border: 1px dashed rgb(220, 220, 220); }

.cta-label { font-size: 13px; color: rgb(103, 103, 103); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }

.cta-button { background: linear-gradient(135deg, rgb(208, 1, 1) 0%, rgb(178, 1, 1) 100%); color: white; padding: 16px 40px; font-size: 18px; text-decoration: none; font-weight: 700; border-radius: 6px; display: inline-block; box-shadow: rgba(209, 0, 0, 0.3) 0px 4px 15px; transition: transform 0.2s, box-shadow 0.2s; }

.cta-button:hover { transform: translateY(-2px); box-shadow: rgba(209, 0, 0, 0.4) 0px 6px 20px; }

.live-counter { display: inline-flex; align-items: center; gap: 8px; background: rgb(254, 242, 204); padding: 8px 15px; border-radius: 20px; font-size: 13px; margin-top: 12px; color: rgb(132, 101, 5); }

.live-counter .dot { width: 6px; height: 6px; background: rgb(41, 166, 70); border-radius: 50%; animation: 1s ease 0s infinite normal none running blink; }

ol { margin: 20px 0px 20px 25px; counter-reset: item 0; list-style: none; }

ol li { margin-bottom: 15px; font-size: 16px; padding-left: 35px; position: relative; }

ol li::before { counter-increment: item 1; content: counter(item); position: absolute; left: 0px; width: 26px; height: 26px; background: rgb(254, 203, 1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }

.warning-box { background: rgb(254, 244, 244); border: 1px solid rgb(254, 203, 203); border-radius: 8px; padding: 18px 20px; margin: 25px 0px; }

.warning-box strong { color: rgb(200, 1, 1); }

.floating-cta { position: fixed; bottom: 20px; right: 20px; background: linear-gradient(135deg, rgb(41, 166, 70) 0%, rgb(34, 135, 57) 100%); color: white; padding: 12px 20px; font-size: 13px; font-weight: 600; text-decoration: none; border-radius: 25px; box-shadow: rgba(40, 167, 69, 0.4) 0px 4px 15px; z-index: 1000; display: flex; align-items: center; gap: 8px; transition: transform 0.2s, box-shadow 0.2s; }

.floating-cta:hover { transform: translateY(-2px); box-shadow: rgba(40, 167, 69, 0.5) 0px 6px 20px; }

.floating-cta .arrow { font-size: 16px; }

@media (max-width: 768px) {
  .floating-cta { bottom: 15px; right: 15px; left: auto; border-radius: 25px; padding: 12px 18px; font-size: 13px; box-shadow: rgba(40, 167, 69, 0.35) 0px 3px 12px; }
  .main-container { padding: 15px 10px; gap: 15px; }
  .content { padding: 18px 15px 25px; }
  h1 { font-size: 22px; line-height: 1.3; margin-bottom: 15px; }
  .subheadline { font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
  p { font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
  h3 { font-size: 18px; margin: 25px 0px 15px; }
  .article-image { margin: 20px -15px; width: calc(100% + 30px); max-width: none; }
  .image-caption { margin: 8px 0px 20px; font-size: 12px; }
  .category-badge { font-size: 10px; padding: 5px 10px; }
  .meta { font-size: 12px; flex-wrap: wrap; gap: 8px; }
  .important-box, .warning-box { padding: 15px; margin: 20px 0px; font-size: 15px; }
  .lead-text { font-size: 16px; padding: 15px; margin-bottom: 20px; }
  .stats-highlight { flex-direction: column; padding: 15px; gap: 0px; }
  .stat-item { padding: 12px 0px; border-bottom: 1px solid rgb(237, 237, 237); }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0px; }
  .stat-number { font-size: 26px; }
  .stat-label { font-size: 12px; }
  .testimonial { padding: 15px; margin: 20px 0px; }
  .testimonial-text { font-size: 15px; padding-left: 25px; }
  .testimonial-author { padding-left: 25px; }
  .testimonial-avatar { width: 42px; height: 42px; }
  .cta-container { padding: 20px 15px; margin: 25px -15px; }
  .cta-button { padding: 14px 25px; font-size: 14px; }
  ol { padding-left: 20px; }
  ol li { font-size: 15px; margin-bottom: 12px; }
}

.lead-text { font-size: 19px; font-weight: 500; color: rgb(35, 35, 35); line-height: 1.6; margin-bottom: 25px; padding: 20px; background: rgb(247, 248, 249); border-radius: 8px; }

.lead-text strong { color: rgb(200, 1, 1); }
