/* =========================================
   1. RESET & BASE STYLES
   ========================================= */
:root {
  --primary: #7a6f9b;
  --secondary: #c5a491;
  --accent: #a5b8a3;
  --light: #f8f5f2;
  --dark: #3a3a3a;
  --transition: all 0.3s ease;
  --whatsapp: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav ul li a:hover {
  color: var(--primary);
}

/* Active Link Style (For Multi-page) */
nav ul li a.active {
  color: var(--primary);
  font-weight: 700;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(
      rgba(122, 111, 155, 0.7),
      rgba(122, 111, 155, 0.7)
    ),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80")
      center/cover no-repeat;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid var(--primary);
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* =========================================
   4. GENERAL SECTION STYLES
   ========================================= */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  font-size: 2.5rem;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

/* =========================================
   5. ABOUT SECTION
   ========================================= */
.about {
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.highlight {
  background-color: rgba(165, 184, 163, 0.2);
  padding: 20px;
  border-left: 4px solid var(--accent);
  margin: 25px 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

/* =========================================
   6. SERVICES SECTION
   ========================================= */
.services {
  background-color: #f9f7f5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.service-icon i {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-pricing {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(122, 111, 155, 0.1);
}

.service-pricing h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.service-pricing ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.service-pricing li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}

.service-pricing li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-pricing p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* =========================================
   7. PAYMENT & MODALS
   ========================================= */
.upi-payment-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), #8a7ca9);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 15px 0 10px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.upi-payment-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #8a7ca9, var(--primary));
}

.upi-modal,
.tarot-options-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.upi-modal-content,
.tarot-options-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 350px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.upi-modal h3,
.tarot-options-content h3 {
  margin: 0 0 15px 0;
  color: var(--primary);
}

.upi-modal-qr img {
  width: 220px;
  height: 220px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 5px;
  background: white;
}

.close-modal-btn,
.close-tarot-options-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal-btn:hover {
  background: #695a8a;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   8. COURSES SECTION
   ========================================= */
.courses {
  background-color: #f5f0eb;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.course-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-features {
  margin: 20px 0;
  padding-left: 20px;
}

.course-features li {
  margin-bottom: 8px;
  position: relative;
}

.course-features li:before {
  content: "✓";
  position: absolute;
  left: -20px;
  color: var(--accent);
  font-weight: bold;
}

.course-price {
  background: linear-gradient(135deg, var(--primary), #8a7ca9);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 15px 0;
  text-align: center;
  font-weight: 600;
}

.course-price .original {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 10px;
}

.course-price .discount {
  color: #ffd700;
  font-weight: 700;
}

.course-btn {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
}

/* =========================================
   9. WORKSHOPS SECTION
   ========================================= */
.workshops {
  background-color: #f0f7ff;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.workshop-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.workshop-image {
  height: 250px;
  overflow: hidden;
}

.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.workshop-card:hover .workshop-image img {
  transform: scale(1.1);
}

.workshop-content {
  padding: 25px;
  text-align: center;
}

/* =========================================
   10. DAILY AFFIRMATION SECTION
   ========================================= */
.affirmation-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  padding: 80px 0;
}

.affirmation-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--secondary);
  transition: transform 0.3s ease;
}

.affirmation-box:hover {
  transform: translateY(-5px);
}

.affirmation-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.affirmation-text {
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-bottom: 30px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   11. MEDITATION TIMER
   ========================================= */
.meditation-timer {
  background: linear-gradient(135deg, #a5b8a3 0%, #7a6f9b 100%);
  color: white;
  text-align: center;
}

.timer-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timer-display {
  font-size: 5rem;
  font-weight: 300;
  margin: 30px 0;
  font-family: "Playfair Display", serif;
}

.timer-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.timer-btn {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.timer-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.timer-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
}

.action-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.action-btn {
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.start-btn {
  background: var(--secondary);
  color: white;
}

.reset-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.breathing-guide {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: none;
}

.breathing-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 4s ease-in-out;
}

.breathing-circle.expand {
  transform: scale(1.5);
  background: rgba(255, 255, 255, 0.3);
}

/* =========================================
   12. PHILOSOPHY & TESTIMONIALS
   ========================================= */
.philosophy {
  background: linear-gradient(to right, var(--primary), #8a7ca9);
  color: white;
}

.philosophy .section-title {
  color: white;
}

.philosophy .section-title:after {
  background-color: var(--secondary);
}

.quote {
  font-size: 1.8rem;
  font-style: italic;
  margin: 40px 0;
  padding: 30px;
  border-left: 4px solid var(--secondary);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 8px 8px 0;
  position: relative;
}

.quote:before {
  content: "“";
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-family: serif;
}

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 20px;
}

.testimonial-text::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: 10px;
  color: var(--accent);
  opacity: 0.2;
  font-family: serif;
}

/* =========================================
   13. DONATION & CONTACT
   ========================================= */
.donation {
  background: linear-gradient(135deg, #c5a491 0%, #a5b8a3 100%);
  color: white;
  text-align: center;
}

.donation h2 {
  color: white;
}

.qrcode-container {
  background: white;
  border-radius: 20px;
  padding: 30px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.qrcode-container img {
  width: 250px;
  height: auto;
  border-radius: 10px;
}

.donation-note {
  font-style: italic;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.disclaimer {
  background-color: #f8f5f2;
  padding: 40px 0;
  border-top: 1px solid #e0d6cc;
  text-align: center;
}

.contact {
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 40px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-5px);
  background-color: var(--secondary);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 111, 155, 0.2);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  display: none;
}

.form-message.success {
  background-color: rgba(165, 184, 163, 0.2);
  border: 1px solid var(--accent);
  color: #2d5016;
}

/* =========================================
   14. FOOTER & FLOATING BUTTONS
   ========================================= */
footer {
  background-color: var(--dark);
  color: white;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-content {
  margin-bottom: 30px;
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background-color: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
}

.whatsapp-float i {
  font-size: 40px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================
   15. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 150px 0 80px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background-color: white;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 30px;
  }
  nav ul li {
    margin: 15px 0;
  }

  .timer-display {
    font-size: 3.5rem;
  }
  .qrcode-container {
    padding: 20px;
  }
  .qrcode-container img {
    width: 200px;
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .service-card {
    padding: 20px;
  }
  .timer-display {
    font-size: 3rem;
  }
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float i {
    font-size: 35px;
  }
}
/* Newsletter Section Styles */
#newsletter-section {
  padding: 60px 20px;
  background-color: #f9f7f2; /* Light creamy background for spirituality */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Subscription Box Styling */
.subscribe-box {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.subscribe-box h3 {
  color: #4a4a4a;
  margin-top: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 12px;
  background-color: #d4a373; /* Gold/Earth tone */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background-color: #b08968;
}

.small-text {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* Article Styling */
.latest-article {
  flex: 2;
  min-width: 300px;
}

.tag {
  background-color: #e9edc9;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
}

.latest-article h2 {
  margin-top: 10px;
  font-size: 28px;
  color: #333;
}

.intro-text {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Zodiac Grid Layout */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.zodiac-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.zodiac-card h4 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.signs-list {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  font-style: italic;
}

.zodiac-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

/* Element Specific Colors */
.zodiac-card.fire {
  border-left-color: #e76f51;
}
.zodiac-card.water {
  border-left-color: #2a9d8f;
}
.zodiac-card.air {
  border-left-color: #e9c46a;
}
.zodiac-card.earth {
  border-left-color: #264653;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column-reverse; /* Puts subscription at bottom on mobile */
  }
}

/* Pricing Disclaimer Style */
.pricing-disclaimer {
  text-align: center;
  padding: 15px 20px;
  margin: 20px auto;
  max-width: 800px;
  background-color: #fff8e1; /* Very light gold/yellow warning color */
  border: 1px solid #ffe0b2; /* Slightly darker border */
  border-radius: 8px;
  color: #5d4037; /* Earthy brown text */
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
}

.pricing-disclaimer a {
  color: #d4a373; /* Gold link color */
  text-decoration: underline;
  font-weight: bold;
}

.pricing-disclaimer a:hover {
  color: #b08968;
}

.highlight-star {
  color: #d4a373;
  font-size: 16px;
  margin-right: 5px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .pricing-disclaimer {
    font-size: 12px;
    margin: 10px 15px; /* Adds space on sides on mobile */
  }
}

/* FIX: Keep header fixed, but push content down */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff; /* Ensures text doesn't show through */
}

/* Push the rest of the page down so it doesn't hide behind the header */
body {
  padding-top: 100px; /* Adjust this number to match your header's height */
}
