@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Bebas+Neue&family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600;700&display=swap";

/* src/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: white;
  overflow-x: hidden;
}
.main-content {
  font-family: "DM Sans", sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}
.announcement-bar {
  background-color: #6a1e55;
  padding: 0.75rem 0;
  text-align: center;
}
.announcement-bar p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .announcement-bar p {
    font-size: 0.875rem;
  }
}
.hero-section {
  position: relative;
  background: url(/assets/images/card.jpeg) no-repeat center center;
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.95) 13%,
      rgba(255, 255, 255, 0.75) 70%,
      rgba(255, 255, 255, 0.1) 100%,
      transparent 100%);
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero-content-container {
  position: relative;
  z-index: 2;
  text-align: left;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero-content-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .hero-content-container {
    text-align: center;
  }
  .hero-ctas {
    align-items: center;
  }
}
.hero-section h1 {
  font-family:
    Helvetica,
    Arial,
    Lucida,
    sans-serif;
  color: black !important;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
  text-align: center;
  line-height: 1em;
}
.hero-description-section {
  background-color: white;
  padding: 3.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-description-section {
    padding: 5rem 0;
  }
}
.hero-description-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-description {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.625;
  margin-bottom: 1rem;
  max-width: 32rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}
.hero-sub-label {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  text-align: center;
}
.hero-arrow-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  text-align: center;
}
.hero-arrow-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  display: block;
}
.hero-arrow-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: #6a1e55;
}
.hero-small-text {
  font-size: 0.875rem;
  color: #1a1a1a;
  font-style: italic;
  max-width: 32rem;
  margin-top: 0.75rem;
  text-align: center;
}
.btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: none;
  min-height: 44px;
  white-space: nowrap;
  width: auto;
}
@media (min-width: 768px) {
  .btn {
    font-size: 1rem;
  }
}
.btn-primary {
  background-color: #6a1e55;
  color: white;
}
.btn-primary:hover {
  background-color: #4f1640;
}
.btn-secondary {
  background:
    linear-gradient(
      135deg,
      #10b981,
      #059669);
  color: white;
}
.btn-secondary:hover {
  background:
    linear-gradient(
      135deg,
      #059669,
      #047857);
}
.btn-white {
  background-color: #6a1e55;
  color: white;
  font-weight: 700;
}
.btn-white:hover {
  background-color: #4f1640;
}
.btn-outline-white {
  background-color: #555555;
  color: white;
  border: 2px solid #555555;
}
.btn-outline-white:hover {
  background-color: #333333;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: auto;
  max-width: none;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.content-section {
  padding: 3.5rem 0;
}
@media (min-width: 768px) {
  .content-section {
    padding: 5rem 0;
  }
}
.content-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .content-section h2 {
    font-size: 1.875rem;
  }
}
.how-to-get-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .how-to-get-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.how-to-get-content {
  text-align: left;
}
.compact-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .compact-text {
    font-size: 1rem;
  }
}
.sub-heading {
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1.25rem;
  color: #1a1a1a;
}
.validity-box {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-top: 1.25rem;
}
.validity-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.validity-box p {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem;
}
.validity-box p:last-child {
  margin-bottom: 0;
}
.plain-disc-list {
  list-style: disc;
  list-style-position: inside;
  padding: 0;
  margin: 0.5rem 0;
}
.plain-disc-list li {
  font-size: 0.875rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .plain-disc-list li {
    font-size: 1rem;
  }
}
.how-to-get-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .how-to-get-card {
    position: sticky;
    top: 2rem;
  }
}
.how-to-get-card img {
  max-width: 420px;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.section-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: auto;
  max-width: 24rem;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.steps-section {
  background-color: #f5f5f5;
  padding: 3.5rem 1rem;
}
@media (min-width: 768px) {
  .steps-section {
    padding: 5rem 2.5rem;
  }
}
.steps-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6a1e55;
  margin: 0 0 2rem 0;
  text-transform: none;
  text-align: center;
}
@media (min-width: 768px) {
  .steps-section h2 {
    font-size: 1.875rem;
  }
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.step-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6a1e55;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .step-number {
    font-size: 1.875rem;
  }
}
.step-text {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.625;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}
@media (min-width: 768px) {
  .step-text {
    font-size: 1rem;
  }
}
.why-choose-section {
  background-color: #f5f5f5;
}
.why-choose-list {
  margin-top: 1.5rem;
}
.why-choose-list li {
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}
.faq-section {
  background: white;
}
.faq-section h2 {
  margin-bottom: 1.5rem;
}
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .faq-wrapper {
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
  }
}
.faq-left {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0;
}
.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
}
.faq-question:hover {
  background-color: #f9fafb;
}
.faq-question.active {
  background-color: #6a1e55;
  color: white;
}
.faq-arrow {
  font-size: 0.875rem;
  color: #6a1e55;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
.faq-question.active .faq-arrow {
  transform: rotate(180deg);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.show {
  max-height: 500px;
}
.faq-answer p {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #1a1a1a;
  line-height: 1.625;
  margin: 0;
  background-color: white;
}
.faq-right {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .faq-right {
    display: block;
    margin-top: -2rem;
    justify-content: flex-start;
  }
}
.faq-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.cta-banner-section {
  background-color: #f5f5f5;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .cta-banner-section {
    padding: 5rem 0;
  }
}
.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner-content .cta-banner-buttons {
  justify-content: center;
}
.cta-banner-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .cta-banner-content h2 {
    font-size: 2.25rem;
  }
}
.cta-banner-content h2 {
  font-size: 1.5rem;
}
.cta-banner-content > p {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.625;
  margin: 1rem 0 0 0;
}
@media (min-width: 768px) {
  .cta-banner-content > p {
    font-size: 1rem;
  }
}
.cta-divider {
  border-top: 1px solid #e5e5e5;
  margin: 1.5rem 0;
}
.cta-banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  width: auto;
  max-width: none;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  .content-section {
    padding: 60px 30px;
  }
  .content-section h2 {
    font-size: 26px;
  }
  .container {
    padding: 0 16px;
    width: 100%;
  }
  .how-to-get-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .how-to-get-card {
    order: 2;
  }
  .how-to-get-content {
    order: 1;
  }
  .how-to-get-card img {
    max-width: 280px;
  }
  .faq-section h2 {
    font-size: 26px;
  }
  .faq-question {
    font-size: 16px;
    padding: 20px 24px;
  }
  .faq-answer p {
    font-size: 15px;
    padding: 0 24px 20px;
  }
  .cta-banner-content h2 {
    font-size: 1.5rem;
  }
  .section-ctas {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 24px;
  }
  .btn {
    width: 100%;
  }
  .hero-ctas {
    width: 100%;
  }
  .section-ctas {
    width: 100%;
  }
  .cta-banner-buttons {
    width: 100%;
  }
}

/* angular:styles/global:styles */
