* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #fdf6f0;
  border-radius: 8px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup .cookie-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.cookie-popup .cookie-header h2 {
  font-size: 24px;
  font-weight: 600;
}

.cookie-popup .cookie-text p {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-popup .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.cookie-popup .cookie-buttons button {
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
}

.cookie-popup .cookie-buttons button.cookie-settings-btn {
  background-color: #e67e22;
  color: white;
}

.cookie-popup .cookie-buttons button.cookie-accept-btn {
  background-color: transparent;
  color: #333;
  border: 1px solid #333;
}

.cookie-popup .cookie-buttons button.cookie-accept-btn:hover {
  background-color: #333;
  color: white;
}

@media (min-width: 768px) {
  .cookie-popup .cookie-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.header {
  padding: 20px 0;
  background-color: #fff;
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.header .logo img {
  max-height: 25px;
}

.header .logo span {
  font-weight: 600;
  font-size: 18px;
}

.hero {
  padding: 60px 0;
  background-color: #fdf6f0;
}

.hero .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .hero .container {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.hero .hero-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero .hero-content h1 {
    font-size: 36px;
  }
}

.hero .hero-content p {
  font-size: 16px;
  opacity: 0.9;
}

.hero .hero-image img {
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 300px;
}

@media (min-width: 768px) {
  .hero .hero-image img {
    max-height: none;
  }
}

.guide-section {
  padding: 50px 0;
  border-bottom: 1px solid #eee;
}

.guide-section:last-of-type {
  border-bottom: none;
}

.guide-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .guide-section h2 {
    font-size: 28px;
  }
}

.guide-section .guide-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 25px;
}

.guide-section .guide-content p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.guide-section .quote {
  background-color: #fdf6f0;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}

.guide-section .quote blockquote {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 10px;
}

.guide-section .quote cite {
  font-style: normal;
  font-weight: 600;
}

.guide-section .resource-list {
  margin-top: 20px;
}

.guide-section .resource-list li {
  margin-bottom: 15px;
}

.guide-section .resource-list li span {
  font-weight: 600;
}

.cta-section {
  padding: 50px 0;
}

.cta-section .cta-container {
  background-color: #fdf6f0;
  border-radius: 8px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cta-section .cta-container {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.cta-section .cta-container .cta-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta-section .cta-container .cta-content {
  padding: 30px;
}

.cta-section .cta-container .cta-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section .cta-container .cta-content p {
  margin-bottom: 20px;
}

.cta-section .cta-container .cta-content .cta-button {
  display: inline-block;
  background-color: #e67e22;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 500;
}

.cta-section .cta-container .cta-content .cta-button:hover {
  background-color: #bf6516;
}

.contact-section {
  padding: 50px 0;
}

.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.contact-section form .form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
}

.contact-section form .form-group input:focus {
  outline: none;
  border-color: #e67e22;
}

.contact-section form .submit-button {
  background-color: #e67e22;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-section form .submit-button:hover {
  background-color: #bf6516;
}

.learning-section {
  padding: 50px 0;
}

.learning-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.learning-section .card-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .learning-section .card-container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.learning-section .card-container .card {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.learning-section .card-container .card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.learning-section .card-container .card .card-image {
  height: 200px;
}

.learning-section .card-container .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.learning-section .card-container .card .card-content {
  padding: 20px;
}

.learning-section .card-container .card .card-content h3 {
  font-size: 18px;
  font-weight: 600;
}

.footer {
  background-color: #fdf6f0;
  padding: 50px 0;
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.footer .footer-logo img {
  max-height: 25px;
}

.footer .footer-logo span {
  font-weight: 600;
}

.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

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

.footer .footer-copyright {
  font-size: 14px;
  opacity: 0.8;
}

.success-section {
  min-height: calc(100vh - 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 50px 0;
}

.success-section .success-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.success-section .success-content .return-button {
  display: inline-block;
  background-color: #e67e22;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 500;
}

.success-section .success-content .return-button:hover {
  background-color: #bf6516;
}

.policy {
  padding-top: 150px;
  padding-bottom: 150px;
}

.policy h1 {
  font-size: 28px;
  margin-bottom: 32px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */