.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Base Styles */
html {
  font-size: 10px;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0;
  line-height: 1.3;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #c39a3d;
  color: #fff;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1.4rem;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #a17d2e;
}

.btn-secondary {
  display: inline-block;
  background-color: #fff;
  color: #333;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1.4rem;
  transition: background-color 0.3s;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #c39a3d;
  color: #fff;
  z-index: 1000;
  padding: 2rem;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  max-width: 120rem;
  margin: 0 auto;
}

.cookie-content h2 {
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

/* Header */
header {
  background-color: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 2rem;
  margin-top: 1.5rem;
}

nav a {
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #c39a3d;
}

/* Hero Section */
.hero {
  padding: 3rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-text {
  padding: 2rem 0;
}

.hero-text h2 {
  color: #c39a3d;
  margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  flex: 1 1 100%;
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 4px;
}

.price {
  font-weight: 700;
  color: #c39a3d;
}

/* About Section */
.about {
  padding: 4rem 0;
}

/* Audit Section */
.audit {
  padding: 4rem 0;
  background-color: #c39a3d;
  color: #fff;
}

.audit a.btn-primary {
  background-color: #fff;
  color: #c39a3d;
  margin-top: 2rem;
}

.audit a.btn-primary:hover {
  background-color: #f1f1f1;
}

/* Guide Section */
.guide {
  padding: 4rem 0;
}

.guide-content {
  display: flex;
  flex-direction: column;
}

.guide-text {
  padding: 2rem 0;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial-card {
  flex: 1 1 100%;
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.testimonial-author {
  text-align: right;
  font-style: italic;
  color: #666;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
}

form {
  width: 100%;
}

.form-group {
  margin-bottom: 2rem;
}

input, textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
}

textarea {
  resize: vertical;
}

/* Success Message */
.success-message {
  padding: 6rem 0;
  text-align: center;
}

.success-message h2 {
  margin-bottom: 2rem;
}

.success-message a {
  margin-top: 3rem;
}

/* Footer */
footer {
  background-color: #f9f9f9;
  padding: 3rem 0;
  border-top: 1px solid #eee;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo h3 {
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #666;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c39a3d;
}

/* Media Queries for Responsive Design */
@media (min-width: 48em) { /* 768px */
  h1 {
      font-size: 2.8rem;
  }

  h2 {
      font-size: 2.4rem;
  }

  h3 {
      font-size: 2rem;
  }

  .header-content {
      flex-direction: row;
      justify-content: space-between;
  }

  nav ul {
      margin-top: 0;
  }

  .hero-content {
      flex-direction: row;
      align-items: center;
  }

  .hero-image {
      flex: 1;
      margin-right: 3rem;
  }

  .hero-text {
      flex: 1;
      padding: 0;
  }

  .card {
      flex: 1 1 calc(50% - 2rem);
  }

  .guide-content {
      flex-direction: row;
      align-items: center;
  }

  .guide-image {
      flex: 1;
      margin-right: 3rem;
  }

  .guide-text {
      flex: 1;
      padding: 0;
  }

  .testimonial-card {
      flex: 1 1 calc(50% - 2rem);
  }

  .contact-content {
      flex-direction: row;
  }

  .contact-image {
      flex: 1;
      margin-right: 3rem;
  }

  form {
      flex: 1;
  }

  .footer-content {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
  }

  .footer-logo h3 {
      margin-bottom: 0;
  }
}

@media (min-width: 62em) { /* 992px */
  .card {
      flex: 1 1 calc(25% - 2rem);
  }

  .testimonial-card {
      flex: 1 1 calc(33.333% - 2rem);
  }
}