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

:root {
  --auralith-deep-amethyst: #3b1c5c;
  --auralith-sky-azure: #3aa7f9;
  --auralith-ethereal-gold: #e9c46a;
  --auralith-misty-white: #f5f7fa;
  --auralith-mystical-green: #5ce1b8;
  --auralith-shadow: rgba(59, 28, 92, 0.1);
  --auralith-glow: rgba(92, 225, 184, 0.3);
}

.auralith-body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    135deg,
    var(--auralith-misty-white) 0%,
    #e8f2ff 100%
  );
  color: var(--auralith-deep-amethyst);
  line-height: 1.6;
  overflow-x: hidden;
}

.auralith-header {
  background: rgba(59, 28, 92, 0.95);
  backdrop-filter: blur(10px);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--auralith-shadow);
}

.auralith-nav {
  padding: 1rem 0;
}

.auralith-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auralith-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--auralith-ethereal-gold);
  font-weight: bold;
  font-size: 1.5rem;
}

.auralith-logo-img {
  width: 60px;
  height: 60px;
  margin-right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--auralith-glow);
}

.auralith-nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.auralith-nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--auralith-ethereal-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.auralith-nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.auralith-nav-link {
  color: var(--auralith-misty-white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.auralith-nav-link:hover {
  color: var(--auralith-mystical-green);
  background: rgba(92, 225, 184, 0.1);
  box-shadow: 0 0 15px rgba(92, 225, 184, 0.2);
}

.auralith-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.auralith-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.auralith-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auralith-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(59, 28, 92, 0.8) 0%,
    rgba(58, 167, 249, 0.3) 100%
  );
  z-index: 1;
}

.auralith-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.auralith-hero-content {
  max-width: 600px;
  color: var(--auralith-misty-white);
  text-align: center;
  margin: 0 auto;
}

.auralith-hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  color: white;
}

.auralith-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(245, 247, 250, 0.9);
  font-weight: 300;
}

.auralith-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.auralith-hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.auralith-hero-btn-primary {
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(58, 167, 249, 0.3);
}

.auralith-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 167, 249, 0.4);
}

.auralith-hero-btn-secondary {
  background: rgba(233, 196, 106, 0.2);
  color: var(--auralith-ethereal-gold);
  border: 2px solid var(--auralith-ethereal-gold);
}

.auralith-hero-btn-secondary:hover {
  background: var(--auralith-ethereal-gold);
  color: var(--auralith-deep-amethyst);
  transform: translateY(-3px);
}

.auralith-hero-crystals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.auralith-crystal {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    45deg,
    var(--auralith-mystical-green),
    var(--auralith-sky-azure)
  );
  border-radius: 50%;
  opacity: 0.3;
  animation: auralith-float 6s ease-in-out infinite;
}

.auralith-crystal-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.auralith-crystal-2 {
  bottom: 30%;
  left: 15%;
  animation-delay: 2s;
}

.auralith-crystal-3 {
  top: 60%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes auralith-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

.auralith-features-section {
  padding: 6rem 0;
  background: var(--auralith-misty-white);
}

.auralith-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-features-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-features-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.auralith-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.auralith-feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(59, 28, 92, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.auralith-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(59, 28, 92, 0.15);
}

.auralith-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
}

.auralith-feature-icon {
  margin-bottom: 1.5rem;
}

.auralith-feature-icon-img {
  width: 100%;
}

.auralith-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-feature-description {
  color: #6b7280;
  line-height: 1.7;
}

.auralith-resonance-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #4c1d5f 100%
  );
  color: white;
}

.auralith-resonance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-resonance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.auralith-resonance-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-resonance-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(245, 247, 250, 0.9);
}

.auralith-resonance-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.auralith-stat {
  text-align: center;
}

.auralith-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--auralith-mystical-green);
  margin-bottom: 0.5rem;
}

.auralith-stat-label {
  font-size: 0.9rem;
  color: rgba(245, 247, 250, 0.8);
}

.auralith-resonance-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auralith-resonance-orb {
  position: relative;
  width: 300px;
  height: 300px;
}

.auralith-resonance-orb-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.auralith-resonance-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.auralith-wave {
  position: absolute;
  border: 2px solid var(--auralith-mystical-green);
  border-radius: 50%;
  opacity: 0.3;
  animation: auralith-pulse 3s ease-in-out infinite;
}

.auralith-wave-1 {
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  animation-delay: 0s;
}

.auralith-wave-2 {
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  animation-delay: 1s;
}

.auralith-wave-3 {
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  animation-delay: 2s;
}

@keyframes auralith-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.auralith-latest-section {
  padding: 6rem 0;
  background: var(--auralith-misty-white);
}

.auralith-latest-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-latest-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-latest-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-latest-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
}

.auralith-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.auralith-latest-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(59, 28, 92, 0.08);
  transition: all 0.3s ease;
}

.auralith-latest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 28, 92, 0.15);
}

.auralith-latest-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.auralith-latest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.auralith-latest-card:hover .auralith-latest-img {
  transform: scale(1.05);
}

.auralith-latest-content {
  padding: 2rem;
}

.auralith-latest-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.auralith-latest-category {
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.auralith-latest-date {
  color: #6b7280;
  font-size: 0.9rem;
}

.auralith-latest-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.auralith-latest-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.auralith-latest-link {
  color: var(--auralith-sky-azure);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.auralith-latest-link:hover {
  color: var(--auralith-mystical-green);
}

.auralith-newsletter-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #2d1b3d 100%
  );
  position: relative;
  overflow: hidden;
}

.auralith-newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(92,225,184,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(233,196,106,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(58,167,249,0.1)"/></svg>')
    repeat;
  opacity: 0.3;
}

.auralith-newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.auralith-newsletter-content {
  text-align: center;
  color: white;
}

.auralith-newsletter-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-newsletter-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(245, 247, 250, 0.9);
  line-height: 1.6;
}

.auralith-newsletter-form {
  margin-bottom: 1rem;
}

.auralith-newsletter-input-group {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.auralith-newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.auralith-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.auralith-newsletter-input:focus {
  outline: none;
  border-color: var(--auralith-mystical-green);
  box-shadow: 0 0 20px rgba(92, 225, 184, 0.3);
}

.auralith-newsletter-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.auralith-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 225, 184, 0.3);
}

.auralith-newsletter-message {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  font-weight: 500;
  display: none;
}

.auralith-newsletter-message.success {
  background: rgba(92, 225, 184, 0.2);
  color: var(--auralith-mystical-green);
  border: 1px solid var(--auralith-mystical-green);
  display: block;
}

.auralith-newsletter-message.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
  display: block;
}

.auralith-footer {
  background: var(--auralith-deep-amethyst);
  color: white;
  padding: 3rem 0 1rem;
}

.auralith-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.auralith-footer-brand {
  padding-right: 2rem;
}

.auralith-footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.auralith-footer-logo-img {
  width: 35px;
  height: 35px;
  margin-right: 0.5rem;
  border-radius: 50%;
}

.auralith-footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--auralith-ethereal-gold);
}

.auralith-footer-description {
  color: rgba(245, 247, 250, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.auralith-footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--auralith-mystical-green);
}

.auralith-footer-list {
  list-style: none;
}

.auralith-footer-list li {
  margin-bottom: 0.5rem;
}

.auralith-footer-link {
  color: rgba(245, 247, 250, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.auralith-footer-link:hover {
  color: var(--auralith-mystical-green);
}

.auralith-footer-contact-text {
  color: rgba(245, 247, 250, 0.8);
  margin-bottom: 0.5rem;
}

.auralith-footer-email {
  color: var(--auralith-ethereal-gold);
  text-decoration: none;
}

.auralith-footer-email:hover {
  color: var(--auralith-mystical-green);
}

.auralith-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.auralith-footer-copyright {
  color: rgba(245, 247, 250, 0.7);
  font-size: 0.9rem;
}

.auralith-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(59, 28, 92, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 10000;
  border-top: 3px solid var(--auralith-mystical-green);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.auralith-cookie-banner.show {
  transform: translateY(0);
}

.auralith-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.auralith-cookie-text h4 {
  color: var(--auralith-ethereal-gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.auralith-cookie-text p {
  color: rgba(245, 247, 250, 0.9);
  font-size: 0.95rem;
}

.auralith-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.auralith-cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auralith-cookie-accept {
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  color: white;
}

.auralith-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(92, 225, 184, 0.3);
}

.auralith-cookie-decline {
  background: transparent;
  color: var(--auralith-ethereal-gold);
  border: 2px solid var(--auralith-ethereal-gold);
}

.auralith-cookie-decline:hover {
  background: var(--auralith-ethereal-gold);
  color: var(--auralith-deep-amethyst);
}

.auralith-about-hero-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #4c1d5f 100%
  );
  color: white;
  text-align: center;
}

.auralith-about-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-about-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-about-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.9);
  margin-bottom: 2rem;
}

.auralith-about-hero-runes {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.auralith-about-rune {
  width: 60px;
  height: 60px;
  opacity: 0.7;
  animation: auralith-rune-glow 3s ease-in-out infinite alternate;
}

@keyframes auralith-rune-glow {
  0% {
    opacity: 0.5;
    filter: brightness(1);
  }
  100% {
    opacity: 0.9;
    filter: brightness(1.3);
  }
}

.auralith-about-mission-section {
  padding: 6rem 0;
  background: var(--auralith-misty-white);
}

.auralith-about-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.auralith-about-crystal-formation {
  position: relative;
  text-align: center;
}

.auralith-about-crystal-img {
  width: 100%;

  object-fit: cover;
}

.auralith-about-energy-field {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border: 2px solid var(--auralith-mystical-green);
  border-radius: 50%;
  opacity: 0.3;
  animation: auralith-pulse 4s ease-in-out infinite;
}

.auralith-about-mission-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1.5rem;
}

.auralith-about-mission-text {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.auralith-about-mission-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(92, 225, 184, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--auralith-mystical-green);
  margin-top: 2rem;
}

.auralith-about-scroll-icon {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.auralith-about-highlight-text {
  font-style: italic;
  color: var(--auralith-deep-amethyst);
  font-weight: 600;
  font-size: 1.1rem;
}

.auralith-about-approach-section {
  padding: 6rem 0;
  background: white;
}

.auralith-about-approach-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-about-approach-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-about-approach-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-about-approach-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
}

.auralith-about-approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.auralith-about-approach-card {
  background: var(--auralith-misty-white);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.auralith-about-approach-card:hover {
  transform: translateY(-10px);
}

.auralith-about-approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
}

.auralith-about-approach-symbol {
  margin-bottom: 2rem;
}

.auralith-about-symbol-img {
  width: 100%;

  background: linear-gradient(
    45deg,
    var(--auralith-ethereal-gold),
    var(--auralith-mystical-green)
  );
  padding: 20px;
}

.auralith-about-approach-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-about-approach-description {
  color: #6b7280;
  line-height: 1.7;
}

.auralith-about-team-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #2d1b3d 100%
  );
  color: white;
}

.auralith-about-team-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-about-team-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-about-team-description {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 4rem;
  color: rgba(245, 247, 250, 0.9);
}

.auralith-about-team-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.auralith-about-value {
  text-align: center;
  padding: 2rem 1rem;
}

.auralith-about-value-icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.auralith-about-value-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--auralith-mystical-green);
}

.auralith-about-value-text {
  color: rgba(245, 247, 250, 0.8);
  line-height: 1.6;
}

.auralith-about-team-quote {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.auralith-about-quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-about-quote-author {
  color: rgba(245, 247, 250, 0.8);
  font-weight: 600;
}

.auralith-contact-hero-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #4c1d5f 100%
  );
  color: white;
  text-align: center;
}

.auralith-contact-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-contact-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-contact-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.9);
  margin-bottom: 2rem;
}

.auralith-contact-crystal {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  animation: auralith-float 4s ease-in-out infinite;
}

.auralith-contact-form-section {
  padding: 6rem 0;
  background: var(--auralith-misty-white);
}

.auralith-contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.auralith-contact-info-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1.5rem;
}

.auralith-contact-info-description {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.auralith-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.auralith-contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.auralith-contact-method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  border-radius: 50%;
  padding: 15px;
  flex-shrink: 0;
}

.auralith-contact-method-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.5rem;
}

.auralith-contact-method-text {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.auralith-contact-method-link {
  color: var(--auralith-sky-azure);
  text-decoration: none;
  font-weight: 600;
}

.auralith-contact-method-note {
  color: #9ca3af;
  font-size: 0.9rem;
  font-style: italic;
}

.auralith-contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(59, 28, 92, 0.1);
}

.auralith-contact-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auralith-contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.5rem;
}

.auralith-contact-form-subtitle {
  color: #6b7280;
}

.auralith-contact-form-group {
  margin-bottom: 1.5rem;
}

.auralith-contact-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
}

.auralith-contact-input,
.auralith-contact-select,
.auralith-contact-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--auralith-deep-amethyst);
}

.auralith-contact-input:focus,
.auralith-contact-select:focus,
.auralith-contact-textarea:focus {
  outline: none;
  border-color: var(--auralith-mystical-green);
  box-shadow: 0 0 15px rgba(92, 225, 184, 0.2);
}

.auralith-contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.auralith-contact-submit-btn {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 15px;
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auralith-contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 225, 184, 0.3);
}

.auralith-contact-form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  display: none;
}

.auralith-contact-form-message.success {
  background: rgba(92, 225, 184, 0.1);
  color: var(--auralith-mystical-green);
  border: 2px solid var(--auralith-mystical-green);
  display: block;
}

.auralith-contact-form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 2px solid #ef4444;
  display: block;
}

.auralith-contact-community-section {
  padding: 6rem 0;
  background: white;
}

.auralith-contact-community-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.auralith-contact-community-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1.5rem;
}

.auralith-contact-community-description {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 4rem;
}

.auralith-contact-community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.auralith-contact-feature {
  padding: 2rem 1rem;
}

.auralith-contact-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    45deg,
    var(--auralith-ethereal-gold),
    var(--auralith-mystical-green)
  );
  border-radius: 50%;
  padding: 20px;
}

.auralith-contact-feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.5rem;
}

.auralith-contact-feature-text {
  color: #6b7280;
  line-height: 1.6;
}

.auralith-contact-response-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #2d1b3d 100%
  );
  color: white;
}

.auralith-contact-response-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-contact-response-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.auralith-contact-response-visual {
  position: relative;
  text-align: center;
}

.auralith-contact-response-img {
  width: 150px;
  height: 150px;
  animation: auralith-float 5s ease-in-out infinite;
}

.auralith-contact-response-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid var(--auralith-mystical-green);
  border-radius: 50%;
  opacity: 0.3;
  animation: auralith-pulse 3s ease-in-out infinite;
}

.auralith-contact-response-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--auralith-ethereal-gold);
  margin-bottom: 1.5rem;
}

.auralith-contact-response-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.9);
  margin-bottom: 2rem;
}

.auralith-contact-response-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(233, 196, 106, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--auralith-ethereal-gold);
}

.auralith-contact-response-note-icon {
  width: 30px;
  height: 30px;
  opacity: 0.8;
}

.auralith-contact-response-note-text {
  color: var(--auralith-ethereal-gold);
  font-weight: 600;
}

.auralith-news-hero-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #4c1d5f 100%
  );
  color: white;
  text-align: center;
}

.auralith-news-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-news-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-news-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.9);
  margin-bottom: 2rem;
}

.auralith-news-scroll {
  margin: 0 auto;
}

.auralith-news-scroll-img {
  width: 100px;
  height: 100px;
  animation: auralith-float 4s ease-in-out infinite;
}

.auralith-news-featured-section {
  padding: 6rem 0;
  background: var(--auralith-misty-white);
}

.auralith-news-featured-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-news-featured-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-news-featured-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-news-featured-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
}

.auralith-news-featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.auralith-news-featured-main {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(59, 28, 92, 0.1);
  transition: transform 0.3s ease;
}

.auralith-news-featured-main:hover {
  transform: translateY(-5px);
}

.auralith-news-featured-image {
  position: relative;

  overflow: hidden;
}

.auralith-news-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auralith-news-featured-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.auralith-news-featured-content {
  padding: 2.5rem;
}

.auralith-news-featured-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.auralith-news-featured-excerpt {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.auralith-news-featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

.auralith-news-featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.auralith-news-featured-side {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(59, 28, 92, 0.08);
  transition: transform 0.3s ease;
}

.auralith-news-featured-side:hover {
  transform: translateY(-3px);
}

.auralith-news-featured-side-image {
  overflow: hidden;
}

.auralith-news-featured-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auralith-news-featured-side-content {
  padding: 1.5rem;
}

.auralith-news-featured-side-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.auralith-news-featured-side-date {
  color: #9ca3af;
  font-size: 0.85rem;
}

.auralith-news-categories-section {
  padding: 6rem 0;
  background: white;
}

.auralith-news-categories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-news-categories-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-news-categories-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
}

.auralith-news-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.auralith-news-category-card {
  background: var(--auralith-misty-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.auralith-news-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(59, 28, 92, 0.15);
}

.auralith-news-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
}

.auralith-news-category-icon {
  margin-bottom: 1.5rem;
}

.auralith-news-category-icon-img {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    45deg,
    var(--auralith-ethereal-gold),
    var(--auralith-mystical-green)
  );
  border-radius: 50%;
  padding: 20px;
}

.auralith-news-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-news-category-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.auralith-news-category-count {
  color: var(--auralith-sky-azure);
  font-weight: 600;
  font-size: 0.9rem;
}

.auralith-news-timeline-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #2d1b3d 100%
  );
  color: white;
}

.auralith-news-timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-news-timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-news-timeline-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-ethereal-gold);
  margin-bottom: 1rem;
}

.auralith-news-timeline-subtitle {
  font-size: 1.2rem;
  color: rgba(245, 247, 250, 0.9);
}

.auralith-news-timeline {
  position: relative;
}

.auralith-news-timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--auralith-mystical-green);
  opacity: 0.3;
}

.auralith-news-timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.auralith-news-timeline-date {
  background: var(--auralith-mystical-green);
  color: white;
  padding: 1rem;
  border-radius: 15px;
  font-weight: 600;
  text-align: center;
  min-width: 120px;
  height: fit-content;
  position: relative;
  z-index: 1;
}

.auralith-news-timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.auralith-news-timeline-image {
  flex-shrink: 0;
}

.auralith-news-timeline-img {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  object-fit: cover;
}

.auralith-news-timeline-item-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--auralith-ethereal-gold);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.auralith-news-timeline-excerpt {
  color: rgba(245, 247, 250, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.auralith-news-timeline-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.auralith-news-timeline-tag {
  background: rgba(92, 225, 184, 0.2);
  color: var(--auralith-mystical-green);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.auralith-reviews-hero-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #4c1d5f 100%
  );
  color: white;
  text-align: center;
}

.auralith-reviews-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-reviews-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-reviews-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.9);
  margin-bottom: 2rem;
}

.auralith-reviews-crystal {
  position: relative;
  margin: 0 auto;
}

.auralith-reviews-crystal-img {
  width: 120px;
  height: 120px;
  animation: auralith-float 4s ease-in-out infinite;
}

.auralith-reviews-crystal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 2px solid var(--auralith-mystical-green);
  border-radius: 50%;
  opacity: 0.3;
  animation: auralith-pulse 3s ease-in-out infinite;
}

.auralith-reviews-featured-section {
  padding: 6rem 0;
  background: var(--auralith-misty-white);
}

.auralith-reviews-featured-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-reviews-featured-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-reviews-featured-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-reviews-featured-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
}

.auralith-reviews-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.auralith-reviews-featured-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(59, 28, 92, 0.1);
  transition: transform 0.3s ease;
}

.auralith-reviews-featured-card:hover {
  transform: translateY(-8px);
}

.auralith-reviews-featured-image {
  position: relative;

  overflow: hidden;
}

.auralith-reviews-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auralith-reviews-featured-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.8rem 1rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auralith-reviews-rating-crystals {
  display: flex;
  gap: 0.2rem;
}

.auralith-reviews-crystal-filled {
  color: var(--auralith-ethereal-gold);
  font-size: 1.2rem;
}

.auralith-reviews-crystal-half {
  color: var(--auralith-ethereal-gold);
  opacity: 0.5;
  font-size: 1.2rem;
}

.auralith-reviews-crystal-empty {
  color: #6b7280;
  font-size: 1.2rem;
}

.auralith-reviews-rating-score {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.auralith-reviews-featured-content {
  padding: 2.5rem;
}

.auralith-reviews-featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.auralith-reviews-featured-genre {
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.auralith-reviews-featured-date {
  color: #9ca3af;
  font-size: 0.9rem;
}

.auralith-reviews-featured-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.auralith-reviews-featured-excerpt {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.auralith-reviews-featured-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.auralith-reviews-highlight-positive,
.auralith-reviews-highlight-negative {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.auralith-reviews-highlight-positive {
  background: rgba(92, 225, 184, 0.1);
  color: var(--auralith-mystical-green);
  border-left: 3px solid var(--auralith-mystical-green);
}

.auralith-reviews-highlight-negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-left: 3px solid #ef4444;
}

.auralith-reviews-highlight-icon {
  width: 16px;
  height: 16px;
}

.auralith-reviews-categories-section {
  padding: 6rem 0;
  background: white;
}

.auralith-reviews-categories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-reviews-categories-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-reviews-categories-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-deep-amethyst);
}

.auralith-reviews-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.auralith-reviews-category {
  background: var(--auralith-misty-white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.auralith-reviews-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(59, 28, 92, 0.15);
}

.auralith-reviews-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
}

.auralith-reviews-category-image {
  height: 150px;
  overflow: hidden;
}

.auralith-reviews-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.auralith-reviews-category:hover .auralith-reviews-category-img {
  transform: scale(1.05);
}

.auralith-reviews-category-content {
  padding: 2rem;
  text-align: center;
}

.auralith-reviews-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-reviews-category-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.auralith-reviews-category-count {
  color: var(--auralith-sky-azure);
  font-weight: 600;
  font-size: 0.9rem;
}

.auralith-reviews-latest-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #2d1b3d 100%
  );
  color: white;
}

.auralith-reviews-latest-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-reviews-latest-header {
  text-align: center;
  margin-bottom: 4rem;
}

.auralith-reviews-latest-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--auralith-ethereal-gold);
  margin-bottom: 2rem;
}

.auralith-reviews-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.auralith-reviews-filter-tab {
  padding: 0.8rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auralith-reviews-filter-tab.auralith-reviews-filter-active,
.auralith-reviews-filter-tab:hover {
  background: var(--auralith-mystical-green);
  border-color: var(--auralith-mystical-green);
  color: white;
}

.auralith-reviews-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.auralith-reviews-latest-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.auralith-reviews-latest-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.auralith-reviews-latest-image {
  position: relative;

  overflow: hidden;
}

.auralith-reviews-latest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auralith-reviews-latest-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--auralith-ethereal-gold);
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
}

.auralith-reviews-latest-content {
  padding: 2rem;
}

.auralith-reviews-latest-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.auralith-reviews-latest-genre {
  background: rgba(92, 225, 184, 0.3);
  color: var(--auralith-mystical-green);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.auralith-reviews-latest-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.auralith-reviews-latest-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--auralith-ethereal-gold);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.auralith-reviews-latest-excerpt {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.auralith-reviews-latest-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.auralith-reviews-tag {
  background: rgba(58, 167, 249, 0.2);
  color: var(--auralith-sky-azure);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.auralith-legal-hero-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--auralith-deep-amethyst) 0%,
    #4c1d5f 100%
  );
  color: white;
  text-align: center;
}

.auralith-legal-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auralith-legal-hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--auralith-ethereal-gold);
}

.auralith-legal-hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.9);
  margin-bottom: 2rem;
}

.auralith-legal-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(245, 247, 250, 0.8);
}

.auralith-legal-content-section {
  padding: 6rem 0;
  background: var(--auralith-misty-white);
}

.auralith-legal-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
}

.auralith-legal-navigation {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(59, 28, 92, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.auralith-legal-nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1.5rem;
  text-align: center;
}

.auralith-legal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.auralith-legal-nav-link {
  display: block;
  padding: 0.8rem 1rem;
  color: #6b7280;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.auralith-legal-nav-link:hover {
  background: rgba(92, 225, 184, 0.1);
  color: var(--auralith-mystical-green);
  transform: translateX(5px);
}

.auralith-legal-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(59, 28, 92, 0.1);
}

.auralith-legal-section {
  margin-bottom: 4rem;
  scroll-margin-top: 120px;
}

.auralith-legal-section:last-child {
  margin-bottom: 0;
}

.auralith-legal-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.auralith-legal-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  border-radius: 2px;
}

.auralith-legal-subsection-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin: 2rem 0 1rem 0;
}

.auralith-legal-text {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.auralith-legal-list {
  color: #4b5563;
  line-height: 1.7;
  margin: 1rem 0 1.5rem 2rem;
}

.auralith-legal-list li {
  margin-bottom: 0.5rem;
}

.auralith-legal-acceptance-note,
.auralith-legal-updates-notice {
  background: rgba(92, 225, 184, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--auralith-mystical-green);
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.auralith-legal-note-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.auralith-legal-note-text {
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
}

.auralith-legal-permitted-uses,
.auralith-legal-usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-use-item,
.auralith-legal-usage-item {
  background: var(--auralith-misty-white);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  border-top: 3px solid var(--auralith-sky-azure);
}

.auralith-legal-use-icon,
.auralith-legal-usage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  border-radius: 50%;
  padding: 15px;
}

.auralith-legal-use-title,
.auralith-legal-usage-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-legal-use-text,
.auralith-legal-usage-text {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

.auralith-legal-prohibited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-prohibited-item {
  background: rgba(239, 68, 68, 0.05);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #ef4444;
}

.auralith-legal-prohibited-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 1rem;
}

.auralith-legal-prohibited-list {
  color: #6b7280;
  line-height: 1.6;
  margin-left: 1.5rem;
}

.auralith-legal-prohibited-list li {
  margin-bottom: 0.5rem;
}

.auralith-legal-rights-breakdown,
.auralith-legal-protection-measures {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-rights-item,
.auralith-legal-measure {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--auralith-misty-white);
  padding: 2rem;
  border-radius: 15px;
}

.auralith-legal-rights-icon,
.auralith-legal-measure-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--auralith-ethereal-gold),
    var(--auralith-mystical-green)
  );
  border-radius: 50%;
  padding: 15px;
  flex-shrink: 0;
}

.auralith-legal-rights-title,
.auralith-legal-measure-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-legal-rights-text,
.auralith-legal-measure-text {
  color: #6b7280;
  line-height: 1.7;
}

.auralith-legal-standards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-standard {
  background: rgba(58, 167, 249, 0.05);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  border-top: 3px solid var(--auralith-sky-azure);
}

.auralith-legal-standard-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-legal-standard-text {
  color: #6b7280;
  line-height: 1.6;
}

.auralith-legal-disclaimer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-disclaimer-card {
  background: rgba(233, 196, 106, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--auralith-ethereal-gold);
}

.auralith-legal-disclaimer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-legal-disclaimer-text {
  color: #6b7280;
  line-height: 1.7;
}

.auralith-legal-contact-info,
.auralith-legal-contact-final {
  background: var(--auralith-misty-white);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.auralith-legal-contact-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-legal-contact-details {
  color: #4b5563;
  line-height: 1.7;
  margin-top: 1rem;
}

.auralith-legal-version-info {
  background: rgba(92, 225, 184, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 1.5rem 0;
}

.auralith-legal-version-info p {
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.auralith-legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-right {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(59, 28, 92, 0.08);
  border-top: 3px solid var(--auralith-mystical-green);
}

.auralith-legal-right-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-legal-right-text {
  color: #6b7280;
  line-height: 1.6;
}

.auralith-legal-cookie-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.auralith-legal-cookie-type-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(59, 28, 92, 0.1);
  border-top: 4px solid var(--auralith-sky-azure);
}

.auralith-legal-cookie-type-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.auralith-legal-cookie-type-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  border-radius: 50%;
  padding: 12px;
}

.auralith-legal-cookie-type-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
}

.auralith-legal-cookie-type-description {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.auralith-legal-cookie-type-examples-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-legal-cookie-type-examples {
  list-style: none;
  margin-left: 0;
  margin-bottom: 1.5rem;
}

.auralith-legal-cookie-type-examples li {
  color: #6b7280;
  margin-bottom: 0.4rem;
  padding-left: 1.5rem;
  position: relative;
}

.auralith-legal-cookie-type-examples li::before {
  content: "•";
  color: var(--auralith-mystical-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.auralith-legal-cookie-type-duration {
  background: rgba(92, 225, 184, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  color: #374151;
  font-size: 0.9rem;
  border-left: 3px solid var(--auralith-mystical-green);
}

.auralith-legal-purposes-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-purpose-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(59, 28, 92, 0.08);
}

.auralith-legal-purpose-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--auralith-ethereal-gold),
    var(--auralith-mystical-green)
  );
  border-radius: 50%;
  padding: 15px;
  flex-shrink: 0;
}

.auralith-legal-purpose-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-legal-purpose-text {
  color: #6b7280;
  line-height: 1.7;
}

.auralith-legal-management-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin: 2rem 0;
}

.auralith-legal-management-method {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(59, 28, 92, 0.1);
}

.auralith-legal-management-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-legal-management-text {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.auralith-legal-management-list {
  list-style: none;
  margin-left: 0;
}

.auralith-legal-management-list li {
  color: #6b7280;
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
}

.auralith-legal-management-list li::before {
  content: "✓";
  color: var(--auralith-mystical-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.auralith-legal-browser-guides {
  margin: 2.5rem 0;
}

.auralith-legal-guides-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1.5rem;
  text-align: center;
}

.auralith-legal-browser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.auralith-legal-browser-item {
  background: var(--auralith-misty-white);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border-top: 3px solid var(--auralith-sky-azure);
}

.auralith-legal-browser-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.8rem;
}

.auralith-legal-browser-name {
  display: block;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.5rem;
}

.auralith-legal-browser-path {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

.auralith-legal-third-party-services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-service-category {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(59, 28, 92, 0.08);
}

.auralith-legal-service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-legal-service-description {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.auralith-legal-service-note {
  background: rgba(233, 196, 106, 0.1);
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--auralith-ethereal-gold);
}

.auralith-legal-third-party-control {
  background: var(--auralith-misty-white);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.auralith-legal-control-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1rem;
}

.auralith-legal-control-list {
  list-style: none;
  margin-left: 0;
}

.auralith-legal-control-list li {
  color: #6b7280;
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.auralith-legal-control-list li::before {
  content: "→";
  color: var(--auralith-sky-azure);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.auralith-legal-consent-process {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.auralith-legal-consent-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.auralith-legal-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.auralith-legal-step-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(59, 28, 92, 0.08);
}

.auralith-legal-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-legal-step-text {
  color: #6b7280;
  line-height: 1.7;
}

.auralith-legal-consent-choices {
  margin: 2rem 0;
}

.auralith-legal-choices-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 1.5rem;
}

.auralith-legal-choice-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.auralith-legal-choice-option {
  background: var(--auralith-misty-white);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--auralith-mystical-green);
}

.auralith-legal-option-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--auralith-deep-amethyst);
  margin-bottom: 0.8rem;
}

.auralith-legal-option-text {
  color: #6b7280;
  line-height: 1.7;
}

.auralith-legal-cookie-contact {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(59, 28, 92, 0.1);
  margin: 2rem 0;
}

.auralith-legal-contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.auralith-legal-contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    45deg,
    var(--auralith-sky-azure),
    var(--auralith-mystical-green)
  );
  border-radius: 50%;
  padding: 12px;
  flex-shrink: 0;
}

.auralith-legal-response-time {
  background: rgba(92, 225, 184, 0.1);
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--auralith-mystical-green);
}

.auralith-legal-final-note {
  background: linear-gradient(
    135deg,
    rgba(59, 28, 92, 0.05) 0%,
    rgba(58, 167, 249, 0.05) 100%
  );
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem 0 0 0;
  border: 2px solid rgba(92, 225, 184, 0.2);
}

@media (max-width: 1024px) {
  .auralith-legal-content-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .auralith-legal-navigation {
    position: static;
    order: 2;
  }

  .auralith-legal-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .auralith-nav-toggle {
    display: flex;
  }

  body,
  html {
    overflow-x: hidden;
  }

  .auralith-nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(59, 28, 92, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 2rem 0;
    transition: left 0.3s ease;
  }

  .auralith-nav-menu.active {
    left: 0;
  }

  .auralith-nav-menu li {
    width: 100%;
    text-align: center;
  }

  .auralith-nav-link {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    margin: 0.5rem 0;
  }

  .auralith-hero-title {
    font-size: 2.5rem;
  }

  .auralith-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .auralith-hero-btn {
    width: 100%;
    max-width: 250px;
  }

  .auralith-features-title,
  .auralith-latest-title,
  .auralith-reviews-featured-title,
  .auralith-news-featured-title {
    font-size: 2.2rem;
  }

  .auralith-about-hero-title,
  .auralith-contact-hero-title,
  .auralith-news-hero-title,
  .auralith-reviews-hero-title {
    font-size: 2.5rem;
  }

  .auralith-legal-hero-title {
    font-size: 2.2rem;
  }

  .auralith-resonance-content,
  .auralith-about-mission-grid,
  .auralith-contact-form-grid,
  .auralith-contact-response-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .auralith-newsletter-input-group {
    flex-direction: column;
    align-items: center;
  }

  .auralith-newsletter-input {
    min-width: auto;
    width: 100%;
    max-width: 400px;
  }

  .auralith-newsletter-btn {
    width: 100%;
    max-width: 200px;
  }

  .auralith-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .auralith-footer-brand {
    padding-right: 0;
  }

  .auralith-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .auralith-cookie-actions {
    justify-content: center;
  }

  .auralith-news-featured-grid {
    grid-template-columns: 1fr;
  }

  .auralith-news-timeline-content {
    flex-direction: column;
    gap: 1rem;
  }

  .auralith-news-timeline-img {
    width: 100%;
    height: 150px;
  }

  .auralith-reviews-featured-grid {
    grid-template-columns: 1fr;
  }

  .auralith-legal-hero-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .auralith-legal-content {
    padding: 2rem 1.5rem;
  }

  .auralith-legal-management-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .auralith-nav-container {
    padding: 0 1rem;
  }

  .auralith-hero-container,
  .auralith-features-container,
  .auralith-resonance-container,
  .auralith-latest-container,
  .auralith-newsletter-container,
  .auralith-footer-container {
    padding: 0 1rem;
  }

  .auralith-hero-title {
    font-size: 2rem;
  }

  .auralith-hero-subtitle {
    font-size: 1.1rem;
  }

  .auralith-features-title,
  .auralith-latest-title {
    font-size: 1.8rem;
  }

  .auralith-resonance-title {
    font-size: 2rem;
  }

  .auralith-features-grid,
  .auralith-latest-grid {
    grid-template-columns: 1fr;
  }

  .auralith-feature-card,
  .auralith-latest-card {
    padding: 2rem 1.5rem;
  }

  .auralith-crystal {
    width: 60px;
    height: 60px;
  }

  .auralith-newsletter-title {
    font-size: 2rem;
  }

  .auralith-about-hero-title,
  .auralith-contact-hero-title,
  .auralith-news-hero-title,
  .auralith-reviews-hero-title {
    font-size: 2rem;
  }

  .auralith-legal-hero-title {
    font-size: 1.8rem;
  }

  .auralith-legal-content {
    padding: 1.5rem 1rem;
  }

  .auralith-legal-section-title {
    font-size: 1.8rem;
  }
}

section {
  border-top: 1px solid whitesmoke;
  border-bottom: 1px solid whitesmoke;
}
