/*
 * PIIRATE - Enhanced CSS Styles
 *
 * This stylesheet provides improved styling for the PIIRATE website,
 * with focus on modern design, improved user experience,
 * and better mobile responsiveness.
 */

:root {
  /* Primary color palette */
  --primary: #3a7bfd;
  --primary-dark: #2a5fd0;
  --primary-light: #5492ff;
  --primary-gradient: linear-gradient(135deg, #3a7bfd 0%, #5492ff 100%);

  /* Secondary colors */
  --secondary: #6c757d;
  --secondary-dark: #5a6268;
  --secondary-light: #8a93a2;

  /* Accent colors */
  --accent: #ff6b6b;
  --accent-dark: #e85858;
  --accent-light: #ff8e8e;

  /* Alert colors */
  --success: #36b37e;
  --warning: #ffba3b;
  --danger: #ff4b5c;
  --info: #4ecdc4;

  /* Neutral colors */
  --dark: #242b33;
  --gray-dark: #495057;
  --gray: #8a93a2;
  --gray-light: #dee2e6;
  --light: #f8f9fa;
  --white: #ffffff;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  --font-monospace: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-round: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;

  /* Z-index layers */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Base Styles */
body {
  font-family: var(--font-primary);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-xl);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-right: var(--spacing-md);
  padding-left: var(--spacing-md);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Buttons */
.cta-button {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-round);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  background-color: var(--primary);
  color: var(--white);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.cta-button.secondary:hover {
  background-color: rgba(58, 123, 253, 0.1);
  color: var(--primary-dark);
}

.cta-button.primary-gradient {
  background-image: var(--primary-gradient);
  border: none;
}

.cta-button.primary-gradient:hover {
  background-image: linear-gradient(135deg, #2a5fd0 0%, #3a7bfd 100%);
}

.cta-button:disabled,
.cta-button.disabled {
  opacity: 0.65;
  pointer-events: none;
}

/* Enhanced Header */
.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  padding: var(--spacing-md) 0;
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  padding: var(--spacing-sm) 0;
  box-shadow: var(--shadow-md);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 40px;
  margin-right: var(--spacing-md);
}

.logo h5 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--primary);
}

.logo-tagline {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-md);
}

nav li {
  margin: 0;
}

nav a {
  color: var(--gray-dark); /* Default text color */
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  transition: color var(--transition-fast);
  border-radius: var(--radius-md);
  display: inline-block; /* Helps with spacing and padding */
}

nav a:hover {
  color: var(--primary);
  text-decoration: none;
}

nav a.active {
  color: var(--primary);
  font-weight: 700;
}

nav a.cta-button {
  color: var(--white);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-dark);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: var(--white);
  z-index: var(--z-modal);
  transition: right var(--transition-normal);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-md);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--gray-light);
}

.mobile-logo {
  display: flex;
  align-items: center;
}

.logo-img-small {
  height: 30px;
  margin-right: var(--spacing-sm);
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
}

.mobile-menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-items li {
  margin-bottom: var(--spacing-md);
}

.mobile-menu-items a {
  display: block;
  padding: var(--spacing-md);
  color: var(--gray-dark);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-menu-items a:hover {
  background-color: rgba(58, 123, 253, 0.1);
  color: var(--primary);
}

/* Enhanced Hero Section */
.hero {
  background-color: var(--primary);
  background-image: var(--primary-gradient);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-md);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
  position: relative;
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
  display: none;
}

.shield-animation {
  max-width: 100%;
  animation: shieldPulse 3s infinite alternate;
}

@keyframes shieldPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  }

  100% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 992px) {
  .hero-image {
    display: block;
  }
}

/* Trust Signals Section */
.trust-signals {
  background-color: var(--white);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--gray-light);
}

.trust-signals-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.trust-signal i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: var(--spacing-md);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: var(--radius-round);
}

.section-header p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(58, 123, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.feature-card:hover .icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h3 {
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: var(--spacing-md);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.feature-list li::before {
  content: '\2022';
  /* Bullet character */
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Services Section */
.services {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
}

.service-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.category-btn {
  background: none;
  border: none;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-radius: var(--radius-round);
  transition: all var(--transition-fast);
}

.category-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.category-btn:hover:not(.active) {
  background-color: var(--gray-light);
  color: var(--gray-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-round);
  background-color: rgba(58, 123, 253, 0.1);
  color: var(--primary);
}

.feature-badge {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-round);
  background-color: var(--accent);
  color: var(--white);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(58, 123, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 1.75rem;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.service-card:hover .icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.service-features li i {
  color: var(--success);
  position: absolute;
  left: 0;
  top: 4px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.service-actions {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: auto;
}

.service-actions button {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-weight: 600;
}

.add-to-cart-btn {
  background-color: rgba(58, 123, 253, 0.1);
  color: var(--primary);
}

.add-to-cart-btn:hover {
  background-color: rgba(58, 123, 253, 0.2);
}

.buy-now-btn {
  background-color: var(--primary);
  color: var(--white);
}

.buy-now-btn:hover {
  background-color: var(--primary-dark);
}

.custom-plan-card {
  background-color: var(--primary-light);
  background-image: linear-gradient(135deg, #3a7bfd 0%, #5492ff 100%);
  color: var(--white);
}

.custom-plan-card h3,
.custom-plan-card p {
  color: var(--white);
}

.bundle-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-round);
  font-size: 0.9rem;
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.bundle-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(58, 123, 253, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.bundle-info h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.25rem;
}

.bundle-info p {
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.steps {
  flex: 1;
  min-width: 300px;
}

.step {
  display: flex;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  bottom: -40px;
  width: 2px;
  background-color: var(--gray-light);
  z-index: 0;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: var(--spacing-md);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.25rem;
}

.step-content p {
  color: var(--gray);
  margin-bottom: var(--spacing-sm);
}

.step-details {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.step-details ul {
  margin: 0;
  padding-left: var(--spacing-lg);
}

.step-details li {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: var(--spacing-xs);
}

.step-icon {
  display: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(58, 123, 253, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-left: var(--spacing-md);
  flex-shrink: 0;
}

.process-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.process-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

@media (min-width: 992px) {
  .step-icon {
    display: flex;
  }
}

/* Privacy Score Section */
.privacy-score-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
  background-image: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.privacy-score-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-xl);
}

.score-info {
  flex: 1;
  min-width: 300px;
}

.score-info h2 {
  margin-bottom: var(--spacing-md);
}

.score-info p {
  margin-bottom: var(--spacing-lg);
  color: var(--gray);
}

.score-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-lg);
}

.score-benefits li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-dark);
}

.score-benefits li i {
  color: var(--success);
  position: absolute;
  left: 0;
  top: 4px;
}

.score-cta {
  margin-top: var(--spacing-md);
}

.score-meter {
  flex: 1;
  min-width: 300px;
}

.meter-container {
  position: relative;
  padding: var(--spacing-lg);
}

.meter-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-image: conic-gradient(
    var(--primary) 0%,
    var(--primary-light) 50%,
    var(--light) 50%,
    var(--light) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  position: relative;
  box-shadow: var(--shadow-md);
}

.meter-circle::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  background-color: var(--white);
}

.meter-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.meter-label {
  font-size: 0.9rem;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.meter-scale {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-md);
  position: relative;
}

.meter-scale::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gray-light);
  z-index: 0;
}

.scale-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.marker-value {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: var(--spacing-xs);
}

.scale-marker.low .marker-value {
  border-color: var(--danger);
  color: var(--danger);
}

.scale-marker.mid .marker-value {
  border-color: var(--warning);
  color: var(--warning);
}

.scale-marker.high .marker-value {
  border-color: var(--success);
  color: var(--success);
}

.marker-label {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Testimonials Section */
.testimonials {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  position: relative;
  padding: 0 var(--spacing-xl);
}

.testimonial-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}

.testimonial-nav:hover {
  background-color: var(--primary);
  color: var(--white);
}

.testimonial-slider {
  display: flex;
  transition: transform var(--transition-normal);
  overflow: hidden;
}

.testimonial {
  min-width: 100%;
  padding: var(--spacing-md);
}

.testimonial-header {
  display: flex;
  margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--spacing-md);
  border: 3px solid var(--primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.author-location {
  font-size: 0.9rem;
  color: var(--gray);
}

.rating {
  margin-top: var(--spacing-xs);
  color: var(--warning);
}

.testimonial-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-content::before {
  content: '\201C';
  /* Left double quotation mark */
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial-content p {
  margin: 0;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-service {
  text-align: right;
  margin-top: var(--spacing-sm);
}

.service-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-round);
  background-color: rgba(58, 123, 253, 0.1);
  color: var(--primary);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.testimonial-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* Stats Section */
.stats-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--primary);
  background-image: linear-gradient(135deg, #3a7bfd 0%, #5492ff 100%);
  color: var(--white);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--spacing-xl);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.cta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-xl);
}

.cta-content {
  flex: 1;
  min-width: 300px;
}

.cta-content h2 {
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  margin-bottom: var(--spacing-lg);
  color: var(--gray);
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background-color: rgba(58, 123, 253, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-round);
  font-size: 0.9rem;
  color: var(--primary);
}

.benefit-item i {
  color: var(--primary);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
}

.cta-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.faq {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.faq-category {
  background: none;
  border: none;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-radius: var(--radius-round);
  transition: all var(--transition-fast);
}

.faq-category.active {
  background-color: var(--primary);
  color: var(--white);
}

.faq-category:hover:not(.active) {
  background-color: var(--gray-light);
  color: var(--gray-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list.hidden {
  display: none;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--spacing-md) var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question i {
  font-size: 0.8rem;
  color: var(--gray);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal),
    padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-md);
  max-height: 1000px;
  /* arbitrary large height to allow content expansion */
}

.faq-more {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.faq-more-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.faq-more-link i {
  transition: transform var(--transition-fast);
}

.faq-more-link:hover i {
  transform: translateX(5px);
}

/* PII Form Section */
.pii-form-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.form-container {
  background-color: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.form-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: var(--spacing-lg);
}

.form-tab {
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  background: none;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.form-tab.active {
  color: var(--primary);
}

.form-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary);
}

.form-tab-content {
  display: none;
}

.form-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.form-group.required label::after {
  content: '*';
  color: var(--danger);
  margin-left: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 123, 253, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.processing-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-option:hover,
.checkbox-option:hover {
  border-color: var(--primary-light);
  background-color: rgba(58, 123, 253, 0.05);
}

.radio-option input,
.checkbox-option input {
  margin-right: var(--spacing-sm);
  width: auto !important;
}

.checkbox-group {
  flex-direction: row;
  flex-wrap: wrap;
}

.checkbox-group .answer-option {
  width: 48%;
  /* Adjust for spacing */
}

.submit-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-round);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.submit-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.form-submit {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.web-scan-intro,
.dark-web-intro,
.scan-disclaimer {
  background-color: rgba(58, 123, 253, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

.web-scan-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--spacing-sm);
}

.dark-web-notice {
  display: flex;
  gap: var(--spacing-md);
  background-color: rgba(255, 107, 107, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.notice-icon {
  font-size: 2rem;
  color: var(--accent);
  display: flex;
  align-items: center;
}

.notice-content h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--accent-dark);
}

.notice-content p {
  margin: 0;
  font-size: 0.9rem;
}

/* Scan Results */
.scan-results {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--spacing-lg);
  overflow: hidden;
}

.scan-results.hidden {
  display: none;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--gray-light);
}

.results-header h3 {
  margin: 0;
}

.close-results-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.close-results-btn:hover {
  color: var(--primary);
}

.results-content {
  padding: var(--spacing-lg);
}

.results-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  border-top: 1px solid var(--gray-light);
}

.action-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.action-button.primary {
  background-color: var(--primary);
  color: var(--white);
}

.action-button.primary:hover {
  background-color: var(--primary-dark);
}

.action-button.secondary {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.action-button.secondary:hover {
  background-color: rgba(58, 123, 253, 0.1);
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.loading-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.loading-spinner {
  text-align: center;
  color: var(--white);
}

.spinner {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--spacing-md);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Cart Styles */
.cart-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 0.75rem;
  background-color: var(--white);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  z-index: var(--z-fixed);
  transition: all var(--transition-fast);
}

.cart-button:hover {
  transform: translateY(-2px);
}

.cart-icon {
  position: relative;
  font-size: 1.2rem;
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-total-display {
  font-weight: 600;
  color: var(--gray-dark);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  z-index: var(--z-modal);
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--spacing-lg);
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  gap: var(--spacing-md);
}

.cart-empty-subtext {
  font-size: 0.9rem;
  margin: 0;
}

.cart-items {
  margin-bottom: var(--spacing-lg);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--gray-light);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--gray);
}

.remove-item-btn {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.remove-item-btn:hover {
  color: var(--danger);
}

.cart-summary {
  margin-top: var(--spacing-lg);
}

.discount-section {
  background-color: rgba(54, 179, 126, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.discount-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--success);
  color: var(--white);
  border-radius: var(--radius-round);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.subtotal-row,
.discount-row,
.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-xs);
}

.discount-row {
  color: var(--success);
}

.total-row {
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--gray-light);
}

.cart-footer {
  padding: var(--spacing-lg);
  border-top: 1px solid var(--gray-light);
}

.cart-checkout-form {
  margin-bottom: var(--spacing-md);
}

.btn-block {
  width: 100%;
  margin-bottom: var(--spacing-sm);
}

.no-scroll {
  overflow: hidden;
}

/* Footer */
.main-footer {
  background-color: var(--dark);
  color: var(--white);
  padding-top: var(--spacing-xxl);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.company-info {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.footer-logo-img {
  height: 40px;
  margin-right: var(--spacing-md);
}

.footer-logo h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.5rem;
}

.company-description {
  margin-bottom: var(--spacing-md);
  color: var(--gray-light);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-round);
  font-size: 0.8rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.contact-info p {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--gray-light);
}

.contact-info i {
  margin-right: var(--spacing-sm);
}

.office-hours {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: var(--spacing-md);
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.newsletter-form {
  margin-top: var(--spacing-md);
}

.input-group {
  display: flex;
  margin-bottom: var(--spacing-sm);
}

.input-group input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-round) 0 0 var(--radius-round);
  font-size: 0.9rem;
}

.subscribe-btn {
  padding: 0 var(--spacing-md);
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-round) var(--radius-round);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.subscribe-btn:hover {
  background-color: var(--primary-dark);
}

.form-consent {
  font-size: 0.8rem;
  color: var(--gray-light);
}

.form-consent label {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  cursor: pointer;
}

.footer-middle {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
}

.footer-nav-col h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-col li {
  margin-bottom: var(--spacing-sm);
  }

.footer-nav-col a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav-col a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) 0;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.copyright {
  color: var(--gray);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.copyright a:hover {
  color: var(--white);
  text-decoration: none;
}

.payment-methods {
  display: flex;
  gap: var(--spacing-sm);
}

.payment-method {
  font-size: 1.5rem;
  color: var(--gray-light);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-md);
  z-index: var(--z-fixed);
  display: flex;
  justify-content: center;
}

.cookie-consent.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  max-width: 1200px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.cookie-btn.accept {
  background-color: var(--primary);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background-color: var(--primary-dark);
}

.cookie-btn.preferences {
  background-color: transparent;
  border: 1px solid var(--gray);
  color: var(--gray-dark);
}

.cookie-btn.preferences:hover {
  background-color: var(--gray-light);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .process-flow {
    flex-direction: column;
  }

  .privacy-score-container {
    flex-direction: column;
    text-align: center;
  }

  .score-benefits {
    display: inline-block;
    text-align: left;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-benefits {
    justify-content: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .company-info {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .main-header nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .feature-card {
    padding: var(--spacing-md);
  }

  .service-card {
    padding: var(--spacing-md);
  }

  .bundle-cta {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }

  .testimonial-container {
    padding: 0;
  }

  .testimonial-navigation {
    display: none;
  }

  .cart-sidebar {
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-button {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .feature-card .icon,
  .service-card .icon {
    margin: 0 auto var(--spacing-md);
  }

  .feature-card,
  .service-card {
    text-align: center;
  }

  .service-actions {
    flex-direction: column;
  }

  .score-display {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .web-scan-options {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: var(--spacing-xs) !important;
}

.mb-2 {
  margin-bottom: var(--spacing-sm) !important;
}

.mb-3 {
  margin-bottom: var(--spacing-md) !important;
}

.mb-4 {
  margin-bottom: var(--spacing-lg) !important;
}

.mb-5 {
  margin-bottom: var(--spacing-xl) !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: var(--spacing-xs) !important;
}

.mt-2 {
  margin-top: var(--spacing-sm) !important;
}

.mt-3 {
  margin-top: var(--spacing-md) !important;
}

.mt-4 {
  margin-top: var(--spacing-lg) !important;
}

.mt-5 {
  margin-top: var(--spacing-xl) !important;
}

.ms-1 {
  margin-left: var(--spacing-xs) !important;
}

.ms-2 {
  margin-left: var(--spacing-sm) !important;
}

.ms-3 {
  margin-left: var(--spacing-md) !important;
}

.ms-4 {
  margin-left: var(--spacing-lg) !important;
}

.ms-5 {
  margin-left: var(--spacing-xl) !important;
}

.me-1 {
  margin-right: var(--spacing-xs) !important;
}

.me-2 {
  margin-right: var(--spacing-sm) !important;
}

.me-3 {
  margin-right: var(--spacing-md) !important;
}

.me-4 {
  margin-right: var(--spacing-lg) !important;
}

.me-5 {
  margin-right: var(--spacing-xl) !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: var(--spacing-xs) !important;
}

.p-2 {
  padding: var(--spacing-sm) !important;
}

.p-3 {
  padding: var(--spacing-md) !important;
}

.p-4 {
  padding: var(--spacing-lg) !important;
}

.p-5 {
  padding: var(--spacing-xl) !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: var(--spacing-xs) !important;
  padding-bottom: var(--spacing-xs) !important;
}

.py-2 {
  padding-top: var(--spacing-sm) !important;
  padding-bottom: var(--spacing-sm) !important;
}

.py-3 {
  padding-top: var(--spacing-md) !important;
  padding-bottom: var(--spacing-md) !important;
}

.py-4 {
  padding-top: var(--spacing-lg) !important;
  padding-bottom: var(--spacing-lg) !important;
}

.py-5 {
  padding-top: var(--spacing-xl) !important;
  padding-bottom: var(--spacing-xl) !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: var(--spacing-xs) !important;
  padding-right: var(--spacing-xs) !important;
}

.px-2 {
  padding-left: var(--spacing-sm) !important;
  padding-right: var(--spacing-sm) !important;
}

.px-3 {
  padding-left: var(--spacing-md) !important;
  padding-right: var(--spacing-md) !important;
}

.px-4 {
  padding-left: var(--spacing-lg) !important;
  padding-right: var(--spacing-lg) !important;
}

.px-5 {
  padding-left: var(--spacing-xl) !important;
  padding-right: var(--spacing-xl) !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: var(--spacing-xs) !important;
}

.m-2 {
  margin: var(--spacing-sm) !important;
}

.m-3 {
  margin: var(--spacing-md) !important;
}

.m-4 {
  margin: var(--spacing-lg) !important;
}

.m-5 {
  margin: var(--spacing-xl) !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: var(--spacing-xs) !important;
  margin-bottom: var(--spacing-xs) !important;
}

.my-2 {
  margin-top: var(--spacing-sm) !important;
  margin-bottom: var(--spacing-sm) !important;
}

.my-3 {
  margin-top: var(--spacing-md) !important;
  margin-bottom: var(--spacing-md) !important;
}

.my-4 {
  margin-top: var(--spacing-lg) !important;
  margin-bottom: var(--spacing-lg) !important;
}

.my-5 {
  margin-top: var(--spacing-xl) !important;
  margin-bottom: var(--spacing-xl) !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: var(--spacing-xs) !important;
  margin-right: var(--spacing-xs) !important;
}

.mx-2 {
  margin-left: var(--spacing-sm) !important;
  margin-right: var(--spacing-sm) !important;
}

.mx-3 {
  margin-left: var(--spacing-md) !important;
  margin-right: var(--spacing-md) !important;
}

.mx-4 {
  margin-left: var(--spacing-lg) !important;
  margin-right: var(--spacing-lg) !important;
}

.mx-5 {
  margin-left: var(--spacing-xl) !important;
  margin-right: var(--spacing-xl) !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-static {
  position: static !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.start-0 {
  left: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden-focusable:not(:focus):not(:active) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-weight-inherit {
  font-weight: inherit !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-reset {
  color: inherit !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-info {
  color: var(--info) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-light {
  color: var(--light) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-white {
  color: var(--white) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-success {
  background-color: var(--success) !important;
}

.bg-info {
  background-color: var(--info) !important;
}

.bg-warning {
  background-color: var(--warning) !important;
}

.bg-danger {
  background-color: var(--danger) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-gradient {
  background-image: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.bg-gradient-reverse {
  background-image: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

/* General Styling */
.privacy-calculator {
  padding: 20px 0;
  font-family: sans-serif;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.calculator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calculator-steps {
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}

.calculator-step {
  display: none;
  /* Hidden by default; JavaScript will show */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
}

.calculator-step.active {
  display: block;
}

.step-questions {
  margin-bottom: 20px;
}

.question {
  margin-bottom: 15px;
}

.answer-options {
  display: flex;
  flex-direction: column;
}

.answer-option {
  margin-bottom: 10px;
}

.answer-option input[type='radio'],
.answer-option input[type='checkbox'] {
  margin-right: 5px;
}

.checkbox-group {
  flex-direction: row;
  flex-wrap: wrap;
}

.checkbox-group .answer-option {
  width: 48%;
  /* Adjust for spacing */
}

.step-navigation {
  text-align: right;
}

.step-navigation button {
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
}

/* Result Section */
.calculator-result {
  display: none;
  /* Hidden initially; JavaScript will show */
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
}

.result-header {
  margin-bottom: 10px;
}

.score-display {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
}

.circular-chart {
  width: 100%;
  height: 100%;
}

.circle-bg {
  fill: none;
  stroke-width: 3.8;
  stroke: #eee;
}

.circle {
  fill: none;
  stroke-width: 3.8;
  stroke: #4caf50;
  /* Or your preferred color */
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.score-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  font-weight: bold;
  fill: #333;
  text-anchor: middle;
  dominant-baseline: middle;
}

.score-interpretation {
  margin-bottom: 20px;
}

.vulnerability-breakdown {
  margin-bottom: 20px;
}

.vulnerability-areas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vulnerability-area {
  display: flex;
  align-items: center;
}

.area-name {
  width: 150px;
}

.area-bar-container {
  flex-grow: 1;
  height: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  margin-right: 10px;
}

.area-bar {
  height: 100%;
  background-color: #ff9800;
  /* Or your preferred color */
  border-radius: 5px;
  width: 0;
  /* Initial width; JavaScript will update */
}

.area-score {
  width: 40px;
}

.recommendations {
  margin-bottom: 20px;
}

.recommendation-list {
  list-style: none;
  padding-left: 0;
}

.recommendation-list li {
  margin-bottom: 5px;
}

.recommendation-list li i {
  margin-right: 5px;
}

.result-cta {
  text-align: center;
}

.cta-button {
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
}

.primary-gradient {
  background: linear-gradient(to right, #4a90e2, #8b68ff);
  /* Replace with your gradient */
}

.reset-calculator {
  background-color: transparent;
  border: none;
  color: #4a90e2;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 10px;
}

/* Form Styling */
.form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 5px;
}

.form-hint {
  font-size: 0.8em;
  color: #666;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .calculator-container {
    width: 95%;
  }

  .checkbox-group .answer-option {
    width: 100%;
    /* Full width on smaller screens */
  }

  .area-name {
    width: 120px;
  }
}

/* Service card styling for consistent display */
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  overflow: visible;
}

/* Give more space for titles */
.service-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

/* Make description text slightly smaller */
.service-description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #555;
}

/* Smaller feature list text */
.service-features li {
  font-size: 0.85rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Position badges properly */
.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 1;
}

.essential-badge {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.advanced-badge {
  background-color: rgba(255, 193, 7, 0.1);
  color: #fd7e14;
}

.premium-badge {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.feature-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffcb2d;
  color: #212529;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

/* Better spacing for price and action button */
.price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c7be5;
}

.service-select-btn {
  padding: 8px 15px;
  background: #2c7be5;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Custom plan card styling */
.custom-plan-card {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  border: 2px dashed #2c7be5;
  text-align: center;
  padding: 30px;
}

.custom-plan-card .icon {
  margin: 0 auto 15px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: rgba(44, 123, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2c7be5;
}

.custom-plan-card .service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c7be5;
}

/* Fix spacing between service rows */
.row.mb-4 {
  margin-bottom: 2rem !important;
}

/* Fix tech-grid section that has duplicate items */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tech-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: all 0.3s ease;
}

/* Fix duplicated Multi-language Support section */
.tech-item .tech-item {
  display: none;
}

/* Ensure testimonial avatar images have fallbacks */
.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #e0e0e0;
}

.testimonial-avatar img[src$='.jpg'][src^='static/'] {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100%" height="100%" fill="%23e0e0e0"/><text x="50%" y="50%" font-family="Arial" font-size="14" fill="%23999" dominant-baseline="middle" text-anchor="middle">User</text></svg>');
  background-size: cover;
}
/* Styles for custom-plan.html */

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #333;
  color: white;
          padding: 1em 0;
          text-align: center;
        }

        .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1em;
        }

        .custom-plan-section {
          padding: 2em 0;
        }

        .plan-options {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 1em;
        }

        .plan-option {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          padding: 1em;
        }

        .plan-option h2 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .plan-option p {
          color: #666;
          margin-bottom: 1em;
        }

        .plan-option ul {
          list-style: none;
          padding: 0;
        }

        .plan-option ul li {
          margin-bottom: 0.5em;
        }

        .plan-option button {
          background-color: #007bff;
          color: white;
          border: none;
          padding: 0.5em 1em;
          border-radius: 4px;
          cursor: pointer;
        }

        .features-section {
          background-color: #f9f9f9;
          padding: 2em 0;
        }

        .features-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 1em;
        }

        .feature {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          padding: 1em;
        }

        .feature h3 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .feature p {
          color: #666;
        }

        .contact-section {
          padding: 2em 0;
        }

        .contact-form {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          padding: 1em;
        }

        .contact-form label {
          display: block;
          margin-bottom: 0.5em;
        }

        .contact-form input,
        .contact-form textarea {
          width: 100%;
          padding: 0.5em;
          margin-bottom: 1em;
          border-radius: 4px;
          border: 1px solid #ccc;
        }

        .contact-form button {
          background-color: #007bff;
          color: white;
          border: none;
          padding: 0.5em 1em;
          border-radius: 4px;
          cursor: pointer;
        }

        footer {
          background-color: #333;
          color: white;
          text-align: center;
          padding: 1em 0;
        }

        /* Styles for faq.html */

        body {
          font-family: sans-serif;
          margin: 0;
          padding: 0;
          background-color: #f4f4f4;
          color: #333;
        }

        header {
          background-color: #333;
          color: white;
          padding: 1em 0;
          text-align: center;
        }

        .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1em;
        }

        .faq-section {
          padding: 2em 0;
        }

        .faq-item {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          margin-bottom: 1em;
          padding: 1em;
        }

        .faq-item h2 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .faq-item p {
          color: #666;
        }

        footer {
          background-color: #333;
          color: white;
          text-align: center;
          padding: 1em 0;
        }

        /* Styles for index.html */

        body {
          font-family: sans-serif;
          margin: 0;
          padding: 0;
          background-color: #f4f4f4;
          color: #333;
        }

        header {
          background-color: #333;
          color: white;
          padding: 1em 0;
          text-align: center;
        }

        .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1em;
        }

        .hero-section {
          padding: 2em 0;
          text-align: center;
        }

        .hero-section h1 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .hero-section p {
          color: #666;
          margin-bottom: 1em;
        }

        .hero-section button {
          background-color: #007bff;
          color: white;
          border: none;
          padding: 0.5em 1em;
          border-radius: 4px;
          cursor: pointer;
        }

        .features-section {
          background-color: #f9f9f9;
          padding: 2em 0;
        }

        .features-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 1em;
        }

        .feature {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          padding: 1em;
        }

        .feature h3 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .feature p {
          color: #666;
        }

        .services-section {
          padding: 2em 0;
        }

        .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 1em;
        }

        .service {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          padding: 1em;
        }

        .service h3 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .service p {
          color: #666;
          margin-bottom: 1em;
        }

        .service button {
          background-color: #007bff;
          color: white;
          border: none;
          padding: 0.5em 1em;
          border-radius: 4px;
          cursor: pointer;
        }

        .testimonials-section {
          background-color: #f9f9f9;
          padding: 2em 0;
        }

        .testimonial {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          padding: 1em;
        }

        .testimonial p {
          color: #666;
          margin-bottom: 0.5em;
        }

        .testimonial h3 {
          color: #333;
        }

        .contact-section {
          padding: 2em 0;
        }

        .contact-form {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          padding: 1em;
        }

        .contact-form label {
          display: block;
          margin-bottom: 0.5em;
        }

        .contact-form input,
        .contact-form textarea {
          width: 100%;
          padding: 0.5em;
          margin-bottom: 1em;
          border-radius: 4px;
          border: 1px solid #ccc;
        }

        .contact-form button {
          background-color: #007bff;
          color: white;
          border: none;
          padding: 0.5em 1em;
          border-radius: 4px;
          cursor: pointer;
        }

        footer {
          background-color: #333;
          color: white;
          text-align: center;
          padding: 1em 0;
        }

        /* Styles for privacy-policy.html */

        body {
          font-family: sans-serif;
          margin: 0;
          padding: 0;
          background-color: #f4f4f4;
          color: #333;
        }

        header {
          background-color: #333;
          color: white;
          padding: 1em 0;
          text-align: center;
        }

        .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1em;
        }

        .privacy-policy-section {
          padding: 2em 0;
        }

        .privacy-policy-section h2 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .privacy-policy-section p {
          color: #666;
          margin-bottom: 1em;
        }

        .privacy-policy-section ul {
          list-style: none;
          padding: 0;
        }

        .privacy-policy-section ul li {
          margin-bottom: 0.5em;
        }

        footer {
          background-color: #333;
          color: white;
          text-align: center;
          padding: 1em 0;
        }

        /* Styles for services.html */

        body {
          font-family: sans-serif;
          margin: 0;
          padding: 0;
          background-color: #f4f4f4;
          color: #333;
        }

        header {
          background-color: #333;
          color: white;
          padding: 1em 0;
          text-align: center;
        }

        .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1em;
        }

        .services-section {
          padding: 2em 0;
        }

        .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 1em;
        }

        .service {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          padding: 1em;
        }

        .service h2 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .service p {
          color: #666;
          margin-bottom: 1em;
        }

        .service button {
          background-color: #007bff;
          color: white;
          border: none;
          padding: 0.5em 1em;
          border-radius: 4px;
          cursor: pointer;
        }

        footer {
          background-color: #333;
          color: white;
          text-align: center;
          padding: 1em 0;
        }

        /* Styles for terms-of-service.html */

        body {
          font-family: sans-serif;
          margin: 0;
          padding: 0;
          background-color: #f4f4f4;
          color: #333;
        }

        header {
          background-color: #333;
          color: white;
          padding: 1em 0;
          text-align: center;
        }

        .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 1em;
        }

        .terms-of-service-section {
          padding: 2em 0;
        }

        .terms-of-service-section h2 {
          color: #333;
          margin-bottom: 0.5em;
        }

        .terms-of-service-section p {
          color: #666;
          margin-bottom: 1em;
        }

        .terms-of-service-section ul {
          list-style: none;
          padding: 0;
        }

        .terms-of-service-section ul li {
          margin-bottom: 0.5em;
        }

        footer {
          background-color: #333;
          color: white;
          text-align: center;
          padding: 1em 0;
        }
		/* Utility Classes */

        .text-center {
          text-align: center;
        }

        .text-right {
          text-align: right;
        }

        .text-left {
          text-align: left;
        }

        .m-0 {
          margin: 0;
        }

        .m-1 {
          margin: 0.25em;
        }

        .m-2 {
          margin: 0.5em;
        }

        .m-3 {
          margin: 1em;
        }

        .mt-0 {
          margin-top: 0;
        }

        .mt-1 {
          margin-top: 0.25em;
        }

        .mt-2 {
          margin-top: 0.5em;
        }

        .mt-3 {
          margin-top: 1em;
        }

        .mb-0 {
          margin-bottom: 0;
        }

        .mb-1 {
          margin-bottom: 0.25em;
        }

        .mb-2 {
          margin-bottom: 0.5em;
        }

        .mb-3 {
          margin-bottom: 1em;
        }

        .p-0 {
          padding: 0;
        }

        .p-1 {
          padding: 0.25em;
        }

        .p-2 {
          padding: 0.5em;
        }

        .p-3 {
          padding: 1em;
        }

        .clearfix::after {
          content: '';
          display: table;
          clear: both;
        }

        .float-left {
          float: left;
        }

        .float-right {
          float: right;
        }

        .hidden {
          display: none;
        }

        .bold {
          font-weight: bold;
        }

        .italic {
          font-style: italic;
        }

        /* Responsive Styles */

        @media (max-width: 768px) {
          .container {
            width: 95%;
          }

          .plan-body {
            grid-template-columns: 1fr;
          }
        }
/* styles.css */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 20px; /* Spacing between grid items */
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative; /* For absolute positioning of badges */
}

.service-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #28a745;
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 1;
}

.feature-badge {
    background-color: #ffc107;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-header .icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #007bff;
}

.service-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
}

.service-actions .service-select-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.service-actions .service-select-btn:hover {
    background-color: #0056b3;
}

/* Custom Plan Card */
.custom-plan-card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.custom-plan-card .service-header {
    justify-content: center;
    margin-bottom: 20px;
}

.custom-plan-card .service-header .icon {
    font-size: 2rem;
}

.bundle-benefits {
    margin-top: 20px;
}

.bundle-benefits .benefit-item {
    text-align: center;
    padding: 15px;
}

.bundle-benefits .benefit-item i {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 5px;
}

.bundle-benefits .benefit-item span {
    display: block;
}

.bundle-action .cta-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.bundle-action .cta-button:hover {
    background-color: #1e7e34;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
}
.custom-plan-card .feature-header h3 {
    font-weight: bold; /* Make the title bold */
    font-size: 1.3em;
    color: #222;
}

.custom-plan-card p {
    font-weight: 500; /* Slightly bolder paragraph text */
    font-size: 1.1em;
    color: #444;
}

.custom-plan-card .feature-list li {
    font-weight: bold; /* Bold list items */
    color: #333;
}

.custom-plan-card .cta-button {
    font-weight: bold;
    font-size: 1.1em;
}
/* Cookie Consent Styles - IMPROVED */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #dee2e6;
    z-index: 1000;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    font-size: 2rem;
    color: #007bff;
    margin-right: 15px;
}

.cookie-text {
    flex: 1;
    font-size: 1rem;
    color: #555;
    margin-right: 20px;
}

.cookie-text h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #28a745;
}

.cookie-btn.preferences {
    background-color: #6c757d;
}

.cookie-btn:hover {
    background-color: #0056b3;
}

.cookie-btn.accept:hover {
    background-color: #218838;
}

.cookie-btn.preferences:hover {
    background-color: #5a6268;
}

.cookie-consent.hidden {
    display: none !important;
}

/* Cookie Preferences Modal */
.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.cookie-preferences-content {
    width: 100%;
    max-width: 600px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cookie-preferences-header {
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-preferences-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.cookie-close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #6c757d;
}

.cookie-preferences-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.cookie-option-info {
    flex: 1;
    margin-left: 15px;
}

.cookie-option-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.cookie-option-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-top: 5px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #0056b3;
    cursor: default;
}

.cookie-preferences-footer {
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-btn.secondary {
    background-color: #6c757d;
}

.cookie-btn.save-preferences {
    background-color: #28a745;
}

@media (max-width: 768px) {
    .cookie-card {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-preferences-content {
        width: 90%;
        margin: 0 15px;
    }
}
/* Style for the logo tagline to match navigation tabs */
.logo-tagline {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
}		