:root {
  --primary: #4caf50;
  --primary-dark: #388e3c;
  --accent: #ff9800;
  --light: #f5f5f5;
  --dark: #333333;
  --gray: #757575;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1002;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Updated Navigation Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  height: 70px;
}

/* Hamburger Menu Styles */
.menu-container {
  position: relative;
}

.hamburger-menu {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}

.hamburger-menu:hover {
  color: var(--primary);
}

.menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  display: none;
  z-index: 1000;
}

.menu-dropdown.active {
  display: block;
}

/* Updated Nav Links Styles */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s;
}

.nav-links a:hover {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--primary);
}

/* Logo Styles */
.logo {
  justify-self: center;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

/* Auth Container Styles */
.auth-container {
  position: relative;
}

.auth-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.auth-button:hover {
  background: var(--primary-dark);
}

.auth-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  min-width: 300px;
  display: none;
  z-index: 1000;
}

.auth-dropdown.active {
  display: block;
}

.auth-dropdown form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-dropdown h3 {
  color: var(--dark);
  margin-bottom: 15px;
}

.auth-dropdown input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.auth-dropdown button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.auth-dropdown p {
  text-align: center;
  margin-top: 10px;
}

.auth-dropdown a {
  color: var(--primary);
  text-decoration: none;
}

/* Profile Dropdown Styles */
.profile-dropdown {
  position: relative;
}

.profile-button {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
}

.profile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  display: none;
  z-index: 1000;
}

.profile-menu.active {
  display: block;
}

.profile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s;
}

.profile-menu li a:hover {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--primary);
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  color: var(--primary);
  font-size: 24px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 40px;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a:not(.cta-button)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links li a:not(.cta-button):hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.cta-button {
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.1) 0%,
    rgba(255, 152, 0, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(76, 175, 80, 0.05) 0%,
    transparent 70%
  );
  transform: rotate(-45deg);
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary));
  background-clip: text;
  color: transparent; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 0; /* Changed from 40px since there are no buttons */
}

.hero-image {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-5px);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--light);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  padding-bottom: 60px;  /* Add space for the button */
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background-color: rgba(76, 175, 80, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.feature-icon i {
  font-size: 40px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.feature-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color:var(--primary);
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-button:hover {
  transform: translateX(-50%) translateY(-2px);
}

.feature-button i {
  transition: transform 0.3s ease;
}

.feature-button:hover i {
  transform: translateX(4px);
}

/* Problem Solution Section */
.problem-solution {
  padding: 100px 0;
  background: linear-gradient(
    45deg,
    rgba(76, 175, 80, 0.05),
    rgba(255, 152, 0, 0.05)
  );
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-button {
  padding: 15px 30px;
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s;
  border-bottom: 3px solid transparent;
}

.tab-button.active {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.problem-list,
.solution-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.problem-list li,
.solution-list li {
  background-color: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.problem-list li::before,
.solution-list li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 15px;
}

.problem-list li::before {
  background-color: #ff5252;
}

.solution-list li::before {
  background-color: var(--primary);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: white;
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: rgba(76, 175, 80, 0.2);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 30%;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
  padding: 60px 0 20px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  padding: 0 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo h3 {
  font-size: 24px;
  color: white;
  margin: 0;
}

.footer-description {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-column h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a i {
  font-size: 12px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #b3b3b3;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-legal a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.separator {
  color: #b3b3b3;
}

/* Additional styles for sidebar */
.sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1001;
    padding-top: 70px;
}

.sidebar.active {
    left: 0;
}

/* Add overlay when sidebar is active */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.sidebar .nav-links li {
    margin: 0;
    list-style: none;
}

.sidebar .nav-links a {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar .nav-links a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary);
}

.sidebar .nav-links a i {
    width: 20px;
}

.menu-toggle {
    font-size: 24px;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-name {
    color: var(--dark);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-image {
    order: -1;
  }

  .hero-content {
    margin-bottom: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h2 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

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

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .steps::before {
    display: none;
  }

  .step {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  nav {
    padding: 10px 0;
  }

  .auth-dropdown {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 320px;
  }

  .profile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    border-radius: 12px 12px 0 0;
  }
}
/* Pricing Section Styles */
.pricing {
  padding: 100px 0;
  background-color: white;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.toggle-option {
  font-weight: 500;
  color: var(--gray);
  position: relative;
}

.toggle-option.active {
  color: var(--primary);
}

.discount-badge {
  position: absolute;
  top: -20px;
  right: -40px;
  background-color: var(--accent);
  color: white;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 0 15px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e0e0e0;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pricing-category {
  width: 100%;
}

.category-title {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.category-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 24px;
  background-color: var(--primary);
  border-radius: 2px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eee;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px 0 0 20px;
}

.card-header {
  padding: 30px 25px 15px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.card-header h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

.price {
  font-size: 16px;
  margin-bottom: 10px;
}

.currency {
  font-size: 24px;
  font-weight: 500;
  vertical-align: top;
  color: var(--dark);
}

.amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
}

.amount.yearly {
  display: none;
}

.period {
  font-size: 16px;
  color: var(--gray);
}

.card-body {
  padding: 25px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.benefits-list li i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.card-footer {
  padding: 0 25px 30px;
  text-align: center;
}

.subscribe-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.subscribe-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: var(--dark);
}

.close-modal {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--dark);
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  padding: 20px 25px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.primary-btn, .secondary-btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: var(--primary);
  color: white;
  border: none;
}

.primary-btn:hover {
  background-color: var(--primary-dark);
}

.secondary-btn {
  background-color: transparent;
  color: var(--gray);
  border: 1px solid #e0e0e0;
}

.secondary-btn:hover {
  background-color: #f5f5f5;
}

/* Receipt Styles */
.receipt {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.receipt-date {
  color: var(--gray);
  font-size: 14px;
}

.receipt-details {
  margin-bottom: 20px;
}

.receipt-details h4 {
  margin-bottom: 15px;
  color: var(--dark);
  font-size: 18px;
}

.receipt-table {
  width: 100%;
  margin-bottom: 20px;
}

.receipt-table td {
  padding: 8px 0;
}

.receipt-table td:first-child {
  font-weight: 500;
  color: var(--gray);
}

.pet-info {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
}

.payment-methods {
  margin-bottom: 20px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-conditions {
  margin-top: 20px;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.terms-checkbox a {
  color: var(--primary);
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

/* Success Modal */
.success-content {
  max-width: 400px;
  text-align: center;
  padding: 30px;
}

.success-icon {
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 20px;
}

.success-content h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.success-content p {
  margin-bottom: 25px;
  color: var(--gray);
}

.subscription-details {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.subscription-details p {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pricing-cards {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-cards {
      grid-template-columns: 1fr;
  }
  
  .modal-content {
      width: 95%;
  }
}

