:root {
  --bg-color: #0a0a0c;
  --bg-card: #1c1c24;
  --accent-color: #e63946;
  --accent-hover: #ff4d5a;
  --text-main: #e0e0e0;
  --text-muted: #a0a0a5;
  --border-color: #333344;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Навігація */
header {
  background-color: rgba(10, 10, 12, 0.95);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent-color);
}

/* Burger Menu */
.burger-menu {
  display: none;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.burger-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
  transition: all 0.3s ease;
  left: 0;
}

.burger-line:nth-child(1) {
  top: 6px;
}

.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 6px;
}

.burger-menu.active .burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%);
}

.burger-menu.active .burger-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Загальні стилі секцій */
section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
  position: relative;
  padding-bottom: 20px;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  border-radius: 2px;
}

/* Hero Секція */
.hero {
  text-align: center;
  padding: 100px 5% 80px;
  background: radial-gradient(
    circle at center,
    #1a1a24 0%,
    var(--bg-color) 70%
  );
}

.hero-icon {
  max-width: 120px;
  max-height: 120px;
  background-color: var(--bg-card);
  border-radius: 25px;
  margin: 0 auto 30px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  color: var(--accent-color);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

/* Секція About */
.about-content {
  background: linear-gradient(135deg, #1c1c24 0%, #14141a 100%);
  background-image:
    radial-gradient(
      circle at 30% 20%,
      rgba(230, 57, 70, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(230, 57, 70, 0.08) 0%,
      transparent 50%
    );
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(230, 57, 70, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    );
  opacity: 0.4;
  pointer-events: none;
}

.about-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
  border-color: rgba(230, 57, 70, 0.4);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.developer-credit {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 30px;
  border-top: 1px solid rgba(230, 57, 70, 0.2);
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

/* Галерея */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: linear-gradient(135deg, #1c1c24 0%, #14141a 100%);
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(230, 57, 70, 0.15) 0%,
    transparent 70%
  );
  height: 170px;
  border-radius: 12px;
  border: 2px solid rgba(230, 57, 70, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.1) 3px,
    rgba(0, 0, 0, 0.1) 6px
  );
  opacity: 0.3;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

/* Key Items & Features Cards */
.grid-list {
  display: grid;
  gap: 20px;
}

.features .grid-list {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card {
  background: linear-gradient(135deg, #1c1c24 0%, #14141a 100%);
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(230, 57, 70, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(230, 57, 70, 0.08) 0%,
      transparent 50%
    );
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgba(230, 57, 70, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    );
  opacity: 0.3;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.card h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.card p {
  position: relative;
  z-index: 1;
}

/* FAQ */
.faq-item {
  background: linear-gradient(135deg, #1c1c24 0%, #14141a 100%);
  background-image: radial-gradient(
    circle at 10% 20%,
    rgba(230, 57, 70, 0.1) 0%,
    transparent 50%
  );
  border: 2px solid rgba(230, 57, 70, 0.2);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.05) 2px,
    rgba(0, 0, 0, 0.05) 4px
  );
  opacity: 0.3;
  pointer-events: none;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
  border-color: rgba(230, 57, 70, 0.4);
}

.faq-item.active {
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: var(--accent-hover);
}

.faq-question .icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-item.active .faq-answer p {
  margin: 0;
  padding-top: 0;
}

/* Footer */
footer {
  background-color: #050505;
  padding: 60px 5% 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-main);
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
}

/* Key Items Section */
.key-items-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .key-items-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.key-item-card {
  background: linear-gradient(135deg, #3d1f1f 0%, #2a1414 100%);
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(139, 0, 0, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.2) 0%, transparent 50%);
  padding: 30px 20px;
  border-radius: 12px;
  border: 2px solid rgba(139, 0, 0, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.key-item-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.1) 2px,
      rgba(0, 0, 0, 0.1) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.1) 2px,
      rgba(0, 0, 0, 0.1) 4px
    );
  opacity: 0.3;
  pointer-events: none;
}

.key-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

.key-item-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  max-width: 100%;
  max-height: 250px;
  position: relative;
  overflow: visible;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.15) 0%,
    rgba(61, 31, 31, 0.25) 50%,
    rgba(42, 20, 20, 0.15) 100%
  );
  padding: 10px;
  opacity: 0.98;
}

.key-item-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 53, 0.2) 0%,
    rgba(139, 0, 0, 0.1) 50%,
    transparent 80%
  );
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.key-item-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(61, 31, 31, 0.3) 100%
  );
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

.key-item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
  object-position: center center;
  position: relative;
  z-index: 1;
  filter: brightness(1.2) contrast(1.15) saturate(1.1)
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
  opacity: 0.92;
  transition: all 0.4s ease;
  mix-blend-mode: normal;
}

.key-item-card:hover .key-item-icon {
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.25) 0%,
    rgba(61, 31, 31, 0.35) 50%,
    rgba(42, 20, 20, 0.25) 100%
  );
}

.key-item-card:hover .key-item-icon::before {
  opacity: 0.9;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 53, 0.35) 0%,
    rgba(139, 0, 0, 0.2) 50%,
    transparent 80%
  );
}

.key-item-card:hover .key-item-icon img {
  filter: brightness(1.35) contrast(1.25) saturate(1.2)
    drop-shadow(0 6px 15px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
  opacity: 1;
  transform: scale(1.08);
}

.key-item-name {
  color: #ff6b35;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.key-item-desc {
  color: #ff8c69;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Адаптивність */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .burger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(10, 10, 12, 0.98);
    flex-direction: column;
    padding: 80px 30px 30px;
    border-left: 1px solid var(--border-color);
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    margin-left: 0;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition:
      padding-left 0.3s ease,
      color 0.3s ease;
  }

  .nav-menu a:hover {
    padding-left: 10px;
  }

  header {
    justify-content: space-between;
  }

  .key-items-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .key-item-card {
    padding: 25px 15px;
  }

  .key-item-icon {
    font-size: 3rem;
  }

  .key-item-name {
    font-size: 1.3rem;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info,
.support-info,
.response-time {
  background: linear-gradient(135deg, #1c1c24 0%, #14141a 100%);
  background-image:
    radial-gradient(
      circle at 30% 20%,
      rgba(230, 57, 70, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(230, 57, 70, 0.08) 0%,
      transparent 50%
    );
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(230, 57, 70, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.contact-info::before,
.support-info::before,
.response-time::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    );
  opacity: 0.4;
  pointer-events: none;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.contact-card {
  background: linear-gradient(135deg, #2a1f1f 0%, #1a1414 100%);
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(230, 57, 70, 0.15) 0%,
    transparent 70%
  );
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgba(230, 57, 70, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.1) 3px,
    rgba(0, 0, 0, 0.1) 6px
  );
  opacity: 0.3;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
  border-color: var(--accent-color);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.contact-card h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.contact-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.support-info {
  text-align: left;
}

.contact-info h2,
.support-info h2 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
  text-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
}

.contact-info h2::after,
.support-info h2::after {
  display: none;
}

.support-info p {
  margin-bottom: 25px;
  color: var(--text-muted);
}

.response-time {
  background: linear-gradient(135deg, #2a1f1f 0%, #1a1414 100%);
  border-color: rgba(230, 57, 70, 0.3);
}

.response-time h2,
.response-time h3 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: left;
  text-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
}

.response-time h2::after {
  display: none;
}

.response-time p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Privacy Policy Page Styles */
.privacy-section {
  padding: 80px 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy-section-item {
  background: linear-gradient(135deg, #1c1c24 0%, #14141a 100%);
  background-image:
    radial-gradient(
      circle at 30% 20%,
      rgba(230, 57, 70, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(230, 57, 70, 0.08) 0%,
      transparent 50%
    );
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(230, 57, 70, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.privacy-section-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    );
  opacity: 0.4;
  pointer-events: none;
}

.privacy-section-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
  border-color: rgba(230, 57, 70, 0.4);
}

.privacy-section-item h2 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: left;
  text-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
}

.privacy-section-item h2::after {
  display: none;
}

.privacy-section-item h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}

.privacy-section-item p {
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.privacy-list li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.privacy-list li::before {
  content: "▸";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.privacy-list li strong {
  color: var(--text-main);
  font-weight: 600;
}

.privacy-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .privacy-section-item,
  .contact-info,
  .support-info,
  .response-time {
    padding: 25px 20px;
  }

  .privacy-section-item h2 {
    font-size: 1.5rem;
  }
}
