@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e8d5c4;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 87, 87, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 87, 87, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Header */
header.gulkand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(26, 15, 36, 0.98) 0%, rgba(26, 15, 36, 0.95) 100%);
  border-bottom: 2px solid rgba(255, 87, 87, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
}

header .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.3rem;
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 0 30px rgba(255, 87, 87, 0.5);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

header .logo:hover {
  text-shadow: 0 0 40px rgba(255, 87, 87, 0.7);
}

header .logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(255, 87, 87, 0.4));
  transition: all 0.3s ease;
}

header .logo-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px rgba(255, 87, 87, 0.6));
}

header .logo span {
  display: none;
}

@media (max-width: 768px) {
  header .logo span {
    display: inline;
  }
}

header nav {
  display: flex;
  gap: 2.5rem;
}

header nav a {
  color: #e8d5c4;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
}

header nav a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: #d4af37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header nav a:hover {
  color: #d4af37;
  background: rgba(255, 87, 87, 0.1);
}

header nav a:hover::before {
  width: 80%;
}

/* Main Content */
main.gulkand-main {
  padding: 2rem 5vw 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Hero Section */
.gulkand-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 0;
  padding: 3rem 0;
}

.gulkand-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 1.5rem;
  color: #d4af37;
  font-weight: 700;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 0 80px rgba(212, 175, 55, 0.2);
  letter-spacing: 0.05rem;
}

.gulkand-hero-content p {
  line-height: 1.8;
  color: #ffffff;
  margin: 0 0 2rem;
  font-size: 1rem;
  font-weight: 400;
}

.gulkand-hero-content span {
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #d4af37;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.gulkand-hero-visual {
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 87, 87, 0.15), rgba(45, 27, 61, 0.4));
  border: 2px solid rgba(255, 87, 87, 0.35);
  text-align: center;
  box-shadow: 0 12px 50px rgba(255, 87, 87, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.gulkand-hero-visual img {
  width: 100%;
  max-width: 280px;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.gulkand-hero-visual img:hover {
  transform: scale(1.05);
}

.gulkand-hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-header .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.15rem;
  color: #d4af37;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Stats Section */
.stats-section {
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(45, 27, 61, 0.4));
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.6s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.5);
}

.stat-card:hover::before {
  left: 100%;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

/* Why Choose Us */
.why-section {
  margin-top: 4rem;
  padding: 2rem 0;
}

.why-section .feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-section .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 1.2rem;
  background: rgba(45, 27, 61, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.why-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(45, 27, 61, 0.6);
}

.why-section .feature-card .icon {
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-section .feature-card:nth-child(1) .icon {
  background: rgba(30, 144, 255, 0.2);
  color: #87ceeb;
}

.why-section .feature-card:nth-child(2) .icon {
  background: rgba(220, 20, 60, 0.2);
  color: #ff6b6b;
}

.why-section .feature-card:nth-child(3) .icon {
  background: rgba(34, 197, 94, 0.2);
  color: #51cf66;
}

.why-section .feature-card:nth-child(4) .icon {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
}

.why-section .feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #d4af37;
  font-weight: 600;
}

.why-section .feature-card p {
  color: #b8a896;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Features Section */
.features-section {
  margin-top: 4rem;
  padding: 2rem 0;
  background: rgba(45, 27, 61, 0.3);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  border: 2px solid rgba(212, 175, 55, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  padding: 1.8rem;
  border-radius: 1rem;
  background: rgba(45, 27, 61, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(45, 27, 61, 0.8);
}

.feature-item h3 {
  font-size: 1rem;
  letter-spacing: 0.03rem;
  color: #d4af37;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.feature-item p {
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Screenshot Section */
.screenshot-section {
  margin-top: 4rem;
  padding: 2rem 0;
}

.screenshot-gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.screenshot-gallery img {
  width: 100%;
  border-radius: 1rem;
  border: 2px solid rgba(255, 87, 87, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
  min-height: 250px;
  object-fit: cover;
}

.screenshot-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 87, 87, 0.25);
  border-color: rgba(255, 87, 87, 0.4);
}

/* Plans Section */
.plan-section {
  margin-top: 4rem;
  padding: 2rem 0;
}

.plan-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.plan-card {
  padding: 2rem;
  border-radius: 1.2rem;
  border: 2px solid rgba(255, 87, 87, 0.2);
  background: rgba(45, 27, 61, 0.5);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.plan-card.highlight {
  background: linear-gradient(135deg, rgba(255, 87, 87, 0.2), rgba(255, 87, 87, 0.05));
  border: 2px solid rgba(255, 87, 87, 0.5);
  transform: scale(1.05);
  box-shadow: 0 10px 50px rgba(255, 87, 87, 0.3);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 87, 87, 0.25);
  border-color: rgba(255, 87, 87, 0.4);
}

.plan-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #e8c547);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  box-shadow: 0 4px 15px rgba(255, 87, 87, 0.4);
}

.plan-card h3 {
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: #d4af37;
  font-weight: 700;
}

.plan-card .price {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 87, 87, 0.2);
}

.plan-card .currency {
  font-size: 1.5rem;
}

.plan-card .period {
  font-size: 0.9rem;
  color: #ffffff;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.plan-card ul li {
  padding: 0.7rem 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 87, 87, 0.1);
  font-size: 0.95rem;
}

.plan-card .check {
  color: #d4af37;
  margin-right: 0.5rem;
  font-weight: 700;
}

.plan-card ul li:last-child {
  border-bottom: none;
}

.plan-card .gulkand-btn {
  margin-top: 1.5rem;
  width: 100%;
}

/* Download Section */
.download-section {
  margin-top: 4rem;
  padding: 3.5rem 3rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  color: #e8d5c4;
  text-align: center;
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
  border: 2px solid rgba(212, 175, 55, 0.25);
}

.download-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #d4af37;
  margin: 0 0 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.download-section p {
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.download-section .gulkand-btn {
  margin: 0 auto;
}

/* Buttons */
.gulkand-btn {
  border-radius: 0.8rem;
  font-weight: 700;
  padding: 1.1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.gulkand-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: 0;
}

.gulkand-btn:hover::before {
  left: 100%;
}

.gulkand-btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 87, 87, 0.4), 0 0 20px rgba(255, 87, 87, 0.2);
  font-weight: 700;
  position: relative;
  border-radius: 2.5rem;
}

.gulkand-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 87, 87, 0.6), 0 0 30px rgba(255, 87, 87, 0.3);
}

.gulkand-btn-secondary {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  border-radius: 2.5rem;
}

.gulkand-btn-secondary:hover {
  background: rgba(255, 87, 87, 0.2);
  color: #e8c547;
  transform: translateY(-3px);
  border-color: #e8c547;
  box-shadow: 0 8px 25px rgba(255, 87, 87, 0.3);
}

/* Grid Highlight */
.grid-highlight {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-highlight article {
  background: rgba(45, 27, 61, 0.5);
  padding: 2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.grid-highlight article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.25);
}

.grid-highlight h3 {
  color: #d4af37;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.grid-highlight p {
  color: #b8a896;
  line-height: 1.7;
  margin: 0;
}

/* Contact Section */
.gulkand-contact {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.gulkand-contact-info {
  padding: 2rem;
  border-radius: 1.2rem;
  background: rgba(45, 27, 61, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.gulkand-contact-info h3 {
  margin-top: 0;
  color: #d4af37;
  font-size: 1.3rem;
  font-weight: 700;
}

.gulkand-contact-info p {
  margin: 0.8rem 0;
  color: #ffffff;
  line-height: 1.8;
}

.gulkand-contact-form {
  background: rgba(45, 27, 61, 0.5);
  border-radius: 1.2rem;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gulkand-contact-form form {
  display: grid;
  gap: 1.2rem;
}

.gulkand-contact-form input,
.gulkand-contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(26, 15, 36, 0.8);
  color: #e8d5c4;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.gulkand-contact-form input::placeholder,
.gulkand-contact-form textarea::placeholder {
  color: rgba(200, 184, 168, 0.5);
}

.gulkand-contact-form input:focus,
.gulkand-contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: rgba(45, 27, 61, 0.7);
}

.gulkand-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.gulkand-contact-form button {
  border: none;
  width: fit-content;
  border-radius: 0.6rem;
  padding: 1rem 2rem;
  font-weight: 700;
  color: #1a0f24;
  background: #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.gulkand-contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
  background: #e8c547;
}

/* Footer */
footer.gulkand-footer {
  margin-top: 4rem;
  padding: 3rem 5vw;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  background: linear-gradient(180deg, rgba(26, 15, 36, 0.95) 0%, rgba(15, 6, 9, 0.98) 100%);
  font-size: 0.95rem;
  color: #ffffff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

footer.gulkand-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  color: #d4af37;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4af37;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
  padding-left: 0.5rem;
}

.footer-section p {
  margin: 0.6rem 0;
  line-height: 1.6;
}

.footer-section a {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gulkand-hero {
    grid-template-columns: 1fr;
  }
  
  .plan-card.highlight {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  header.gulkand-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 4vw;
  }
  
  header nav {
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
  }
  
  main.gulkand-main {
    padding: 1.5rem 4vw 3rem;
  }
  
  .gulkand-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header .section-title {
    font-size: 1.6rem;
  }
  
  .plan-card.highlight {
    transform: scale(1);
  }
  
  .download-section {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  header .logo {
    font-size: 1.4rem;
  }
  
  header nav {
    gap: 1rem;
  }
  
  header nav a {
    font-size: 0.65rem;
  }
  
  .section-header .section-title {
    font-size: 1.4rem;
  }
  
  .gulkand-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .why-section .feature-card .icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

/* Policy Pages */
.policy-page {
  min-height: calc(100vh - 200px);
}

.policy-hero {
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.policy-hero h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin: 0 0 1rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.policy-hero p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 1rem;
  background: rgba(45, 27, 61, 0.6);
  transition: all 0.3s ease;
}

.policy-section:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(45, 27, 61, 0.8);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.policy-section:last-child {
  border-color: rgba(212, 175, 55, 0.3);
}

.policy-section h2 {
  color: #d4af37;
  font-size: 1.4rem;
  margin: 0 0 1rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.policy-section p {
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 400;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.policy-section ul li {
  color: #ffffff;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  line-height: 1.6;
  font-weight: 400;
}

.policy-section ul li:before {
  content: '•';
  color: #d4af37;
  position: absolute;
  left: 0;
}
