/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #1d1d1d; /* Black background */
  color: #fff; /* White text */
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Page Header Styling */
.page-header {
  width: 100%;
  text-align: center;
  background: linear-gradient(#1d1d1d); /* Subtle gradient */
}

.header-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.header-subtext {
  font-size: 1.2rem;
  font-weight: 300;
  color: #aaa; /* Light gray for contrast */
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }

  .header-subtext {
    font-size: 1rem;
  }
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 200px;
  margin-top: 0%;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
nav .fa-solid {
  display: none;
}
@media (max-width: 700px) {
  nav img {
    width: 125px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: absolute;
    background: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-solid {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
  .row {
    flex-direction: column;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Introduction Section Styling */
.introduction-section {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  background-color: #111; /* Slightly lighter black for contrast */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

.intro-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  color: #fff; /* White title */
}

.intro-text {
  font-size: 1.2rem;
  font-weight: 300;
  color: #aaa; /* Light gray for the body text */
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: 132px;
}

/* Refund Policy Section */
.refund-policy {
  width: 100%;
  background-color: #111; /* Slightly lighter black for contrast */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-weight: bold;
}

/* Key Section Styling */
.key-section {
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #fff;
}

ul,
ol {
  margin-left: 20px;
}

ul li,
ol li {
  font-size: 1.1rem;
  color: #aaa; /* Light gray text for readability */
  margin-bottom: 10px;
}

ol {
  list-style-type: decimal;
}

strong {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }

  .key-section {
    margin-bottom: 30px;
  }
}
/* Footer Section */
.footer-section {
  background-color: #1e1e1e; /* Dark Background */
  color: #fff; /* Light Text */
  padding: 50px 20px;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.newsletter-container,
.social-media-container,
.contact-info {
  flex: 1;
  min-width: 250px;
  padding: 20px;
}

.newsletter-container h3,
.social-media-container h3,
.contact-info h3 {
  font-size: 24px;
  color: #ffb800; /* Royal Gold */
  margin-bottom: 10px;
}

.newsletter-container p,
.social-media-container p,
.contact-info p {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 15px;
}
.contact-info a {
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
  color: white;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 12px;
  border: 2px solid #333;
  border-radius: 8px;
  background-color: #333;
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #ffb800; /* Royal Gold */
}

.newsletter-form button {
  padding: 14px 24px;
  background-color: #ffb800; /* Royal Gold */
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e59f00; /* Darker Gold */
}

.social-media-list {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.social-link {
  display: block;
  color: #fff;
  font-size: 24px;
}

.social-link:hover {
  color: #ffb800; /* Royal Gold */
}

.contact-info p {
  font-size: 18px;
  color: #f0f0f0;
}

.footer-bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 16px;
  color: #888;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 200px;
  margin-top: 0%;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
nav .fa-solid {
  display: none;
}
@media (max-width: 700px) {
  nav img {
    width: 125px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: absolute;
    background: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-solid {
    display: block;
    padding-right: 20px;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
  .row {
    flex-direction: column;
  }
}
.container {
  background-color: #121212;
}
