/* Variables */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Brinova', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
}

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

ul {
  list-style: none;
}

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

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #050F2C;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background-color: black;
}

.btn-text {
  display: inline-block;
  background-color: transparent;
  color: #050F2C;
  padding: 12px 24px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-text:hover {
  color: #E84C3D;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-top: 1px solid #eee;
  padding: 20px;
  z-index: 1000;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-banner .cookie-content {
  max-width: 600px;
  text-align: center;
}

.cookie-banner .cookie-icon {
  margin-bottom: 15px;
}

.cookie-banner .cookie-icon img {
  width: 60px;
  height: auto;
}

.cookie-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cookie-banner p {
  margin-bottom: 20px;
}

.cookie-banner .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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.success-message .success-content {
  max-width: 500px;
  text-align: center;
  padding: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.success-message h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-message p {
  margin-bottom: 30px;
}

.success-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  background-color: #FFFFFF;
}

.success-page .success-content {
  max-width: 500px;
  text-align: center;
  padding: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.success-page h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-page p {
  margin-bottom: 30px;
}

/* Header */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #F3D58C;
  padding: 15px 0;
  z-index: 100;
}

header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

header .desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  header .desktop-nav {
    display: block;
  }
}

header .desktop-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

header .desktop-nav ul li a {
  font-weight: 500;
}

header .desktop-nav ul li a:hover {
  color: #E84C3D;
}

header .mobile-menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  header .mobile-menu-toggle {
    display: none;
  }
}

header .mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #050F2C;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

header .mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 62px;
  /* Header height */
  left: 0;
  width: 100%;
  height: 0;
  background-color: #FFFFFF;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}

.mobile-nav.active {
  height: calc(100vh - 62px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
  padding: 20px;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  font-size: 1.2rem;
}

.mobile-nav ul li a:hover {
  color: #E84C3D;
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

/* Hero Section */
.hero {
  background-color: #F3D58C;
  padding: 60px 0;
}

.hero .hero-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: 40px;
}

@media (min-width: 992px) {
  .hero .hero-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero .hero-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero .hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero .hero-text h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-text p {
  margin-bottom: 30px;
}

.hero .hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero .hero-image img {
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about .about-content {
  text-align: center;
}

.about .about-content h2 {
  margin-bottom: 20px;
}

.about .about-content p {
  max-width: 800px;
  margin: 0 auto 40px;
}

.about .features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .about .features {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.about .feature {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.about .feature .feature-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.about .feature .feature-icon img {
  width: 100%;
  height: auto;
}

.about .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.about .feature p {
  margin-bottom: 0;
}

.about .about-image {
  margin-top: 50px;
}

.about .about-image img {
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
  background-color: #f9f9f9;
}

.benefits .benefits-content {
  text-align: center;
}

.benefits .benefits-content h2 {
  margin-bottom: 20px;
}

.benefits .benefits-content p {
  max-width: 800px;
  margin: 0 auto 40px;
}

.benefits .benefit-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .benefits .benefit-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.benefits .benefit-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.benefits .benefit-card.yellow {
  border-left: 4px solid #F3D58C;
}

.benefits .benefit-card.red {
  border-left: 4px solid #E84C3D;
}

.benefits .benefit-card.blue {
  border-left: 4px solid #050F2C;
}

.benefits .benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.benefits .benefit-card p {
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials .testimonials-content {
  text-align: center;
}

.testimonials .testimonials-content h2 {
  margin-bottom: 50px;
}

.testimonials .testimonial-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .testimonials .testimonial-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.testimonials .testimonial-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonials .testimonial-card .testimonial-profile {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 50%;
}

.testimonials .testimonial-card .testimonial-profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials .testimonial-card .testimonial-stars {
  color: gold;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.testimonials .testimonial-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonials .testimonial-card p {
  font-style: italic;
  margin-bottom: 0;
}

/* Financial Education Section */
.financial-education {
  background-color: #f9f9f9;
}

.financial-education .financial-education-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: 40px;
}

@media (min-width: 992px) {
  .financial-education .financial-education-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.financial-education .financial-education-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.financial-education .financial-education-text h2 {
  margin-bottom: 20px;
}

.financial-education .financial-education-text p {
  margin-bottom: 20px;
}

.financial-education .financial-education-text .btn-primary {
  margin-top: 10px;
}

.financial-education .financial-education-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.financial-education .financial-education-image img {
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact .contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact .contact-content h2 {
  margin-bottom: 20px;
}

.contact .contact-content p {
  margin-bottom: 10px;
}

.contact form {
  margin-top: 40px;
  text-align: left;
}

.contact form .form-group {
  margin-bottom: 20px;
}

.contact form input, .contact form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Brinova', sans-serif;
  font-size: 1rem;
}

.contact form input:focus, .contact form textarea:focus {
  outline: none;
  border-color: #050F2C;
}

.contact form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact form button[type="submit"] {
  margin-top: 10px;
  width: 100%;
}

@media (min-width: 576px) {
  .contact form button[type="submit"] {
    width: auto;
  }
}

/* Footer */
footer {
  background-color: #050F2C;
  color: #FFFFFF;
  padding: 60px 0 30px;
}

footer .footer-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: 30px;
}

@media (min-width: 768px) {
  footer .footer-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

footer .footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  footer .footer-logo {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  footer .footer-info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

footer .footer-info p {
  margin-bottom: 10px;
}

footer .footer-links {
  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;
}

@media (min-width: 768px) {
  footer .footer-links {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

footer .footer-links a {
  color: #FFFFFF;
}

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

footer .footer-copyright {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

@media (min-width: 768px) {
  footer .footer-copyright {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    text-align: center;
  }
}

footer .footer-copyright p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
/*# sourceMappingURL=style.css.map */