:root {
  --primary-color: #032B44;
  --accent-color: #03A9F4;
  --bg-color: #f8f9fa;
  --text-color: #333333;
  --light-gray: #f7f7f7;
  --dark-gray: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img:not(.logo-img):not(.logo) {
  max-width: 100%;
  height: auto;
}

.logo-img {
  max-width: 48px;
  height: auto;
}

section {
  padding: 83px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 13px;
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--accent-color);
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent-color);
}

.hero-section {
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--light-gray) 100%);
}

.hero-content {
  position: relative;
}

.rating-badge-large {
  display: inline-block;
}

.score-display {
  text-align: center;
}

.score-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.score-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-pros-cons ul {
  list-style: none;
  padding: 0;
}

.hero-pros-cons li {
  font-size: 0.95rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-danger:hover {
  background-color: #cc0000;
  border-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(255,0,0,0.3);
}

.btn-outline-dark {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

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

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

.feature-card,
.service-card,
.testimonial-card,
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 27px rgba(0,0,0,0.15);
}

.feature-icon::before,
.contact-icon::before,
.value-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.service-rating {
  margin-bottom: 1rem;
}

.service-rating .badge {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.stats-section {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
}

.testimonial-rating {
  color: #ffc107;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
}

.team-card {
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-11px);
}

.team-social a {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

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

.accordion-button {
  font-size: 1.1rem;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.accordion-body {
  padding: 1.5rem;
  font-size: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #cc0000 100%);
}

.footer-main {
  background-color: var(--dark-gray);
}

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

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-contact li {
  display: flex;
  align-items: center;
}

.social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.page-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
}

.article-hero {
  background: var(--light-gray);
}

.article-meta {
  font-size: 1rem;
}

.overall-rating {
  margin-top: 2rem;
}

.score-display-large {
  padding: 1rem;
}

.rating-breakdown .progress {
  height: 7px;
  background-color: #e9ecef;
}

.rating-breakdown .progress-bar {
  background-color: var(--accent-color);
}

.pros-cons-section {
  border-left: 4px solid var(--accent-color);
}

.content-block {
  line-height: 1.8;
}

.content-block img {
  margin: 2rem 0;
}

.verdict-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #cc0000 100%);
  border-left: 5px solid var(--primary-color);
}

.sidebar {
  position: sticky;
  top: 99px;
}

.sidebar-widget {
  margin-bottom: 2rem;
}

.specs-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
}

.specs-list li:last-child {
  border-bottom: none;
}

.score-badge {
  font-size: 2rem;
  font-weight: 900;
}

.related-item img {
  transition: transform 0.3s ease;
}

.related-item:hover img {
  transform: scale(1.05);
}

.blog-filters .btn {
  margin: 0.25rem;
}

.review-card-large {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 28px rgba(0,0,0,0.15);
}

.pagination .page-link {
  color: var(--primary-color);
  border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.trending-item {
  transition: transform 0.3s ease;
}

.trending-item:hover {
  transform: translateX(5px);
}

.comparison-section table {
  box-shadow: 0 5px 17px rgba(0,0,0,0.1);
}

.comparison-section thead {
  background-color: var(--primary-color);
  color: white;
}

.comparison-section td,
.comparison-section th {
  padding: 1rem;
  vertical-align: middle;
}

.contact-form .form-control {
  padding: 0.75rem 1rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255,0,0,0.1);
}

.contact-item {
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(9px);
}

.legal-content {
  line-height: 1.8;
}

.legal-section h2 {
  color: var(--primary-color);
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.75rem;
}

.value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 27px rgba(0,0,0,0.15);
}

.methodology-step {
  position: relative;
  padding-left: 1rem;
}

.step-number {
  font-size: 1.5rem;
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }

  section {
    padding: 58px 0;
  }

  .hero-section {
    padding: 37px 0;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  section {
    padding: 42px 0;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-pros-cons {
    margin-top: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .sidebar {
    position: static;
    margin-top: 3rem;
  }
}
