@charset "UTF-8";
/* Variables */
/* Mixins */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

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

a:hover {
  color: #0040ff;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 1rem;
}

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

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

section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 0;
  }
}

.highlight {
  color: #3366ff;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn:focus {
  outline: none;
}

.btn.btn-primary {
  background-color: #3366ff;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #0040ff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn.btn-secondary {
  background-color: #ffffff;
  color: #3366ff;
  border: 1px solid #3366ff;
}

.btn.btn-secondary:hover {
  background-color: rgba(51, 102, 255, 0.05);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 480px) {
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Header Styles */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  z-index: 1000;
}

.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1e293b;
  font-weight: 700;
  font-size: 1.25rem;
}

.header .logo img {
  height: 40px;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .header .desktop-nav {
    display: none;
  }
}

.header .desktop-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .desktop-nav ul li {
  margin-left: 2rem;
}

.header .desktop-nav ul li a {
  color: #1e293b;
  font-weight: 500;
}

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

.header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .header .mobile-menu-toggle {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
  }
  .header .mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #1e293b;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  .header .mobile-menu-toggle span:nth-child(1) {
    top: 0px;
  }
  .header .mobile-menu-toggle span:nth-child(2) {
    top: 10px;
  }
  .header .mobile-menu-toggle span:nth-child(3) {
    top: 20px;
  }
  .header .mobile-menu-toggle.active span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  .header .mobile-menu-toggle.active span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}

.header .mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header .mobile-nav.active {
  display: block;
}

.header .mobile-nav ul {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.header .mobile-nav ul li {
  width: 100%;
  padding: 0.75rem 1.5rem;
}

.header .mobile-nav ul li a {
  display: block;
  color: #1e293b;
  font-weight: 500;
}

.header .mobile-nav ul li a:hover {
  color: #3366ff;
}

/* Hero Section */
.hero {
  background-color: #f5f7fa;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }
}

.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

@media (max-width: 768px) {
  .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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero .hero-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .hero .hero-text {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
}

.hero .hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero .hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666666;
}

.hero .hero-text .hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero .hero-text .hero-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero .hero-text .hero-buttons {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
  .hero .hero-text .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

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

.hero .hero-image img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* About Section */
.about {
  background-color: #ffffff;
}

.about .about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about .about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666666;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/* Experts Section */
.experts {
  background-color: #f5f7fa;
}

.experts .experts-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .experts .experts-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .experts .experts-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.experts .expert-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.experts .expert-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.experts .expert-card .expert-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experts .expert-card .expert-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.experts .expert-card h3 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.experts .expert-card .expert-title {
  color: #3366ff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.experts .expert-card p {
  color: #666666;
}

.experts .expert-card p:last-child {
  margin-bottom: 0;
}

/* Courses Section */
.courses {
  background-color: #ffffff;
}

.courses .courses-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .courses .courses-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .courses .courses-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.courses .course-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e5ea;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.courses .course-card:nth-child(1) {
  border-top: 4px solid #4285f4;
}

.courses .course-card:nth-child(1) .course-icon {
  background-color: rgba(66, 133, 244, 0.1);
}

.courses .course-card:nth-child(2) {
  border-top: 4px solid #34a853;
}

.courses .course-card:nth-child(2) .course-icon {
  background-color: rgba(52, 168, 83, 0.1);
}

.courses .course-card:nth-child(3) {
  border-top: 4px solid #ea4335;
}

.courses .course-card:nth-child(3) .course-icon {
  background-color: rgba(234, 67, 53, 0.1);
}

.courses .course-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.courses .course-card .course-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}

.courses .course-card .course-icon img {
  width: 40px;
  height: 40px;
}

.courses .course-card h3 {
  margin-bottom: 0.5rem;
}

.courses .course-card .course-level {
  color: #3366ff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.courses .course-card p {
  color: #666666;
  margin-bottom: 1.5rem;
}

.courses .course-card .course-features {
  margin-bottom: 2rem;
}

.courses .course-card .course-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #666666;
}

.courses .course-card .course-features li:before {
  content: "•";
  color: #3366ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.courses .course-card .course-features li:last-child {
  margin-bottom: 0;
}

.courses .course-card .btn {
  margin-top: auto;
}

/* Testimonials Section */
.testimonials {
  background-color: #f5f7fa;
}

.testimonials .testimonials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .testimonials .testimonials-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials .testimonials-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.testimonials .testimonial-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonials .testimonial-card .testimonial-stars {
  color: #ffb400;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonials .testimonial-card .testimonial-text {
  font-style: italic;
  color: #666666;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonials .testimonial-card .testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .testimonial-card .testimonial-author .testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

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

.testimonials .testimonial-card .testimonial-author .testimonial-author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonials .testimonial-card .testimonial-author .testimonial-author-info p {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Contact Form Section */
.contact {
  background-color: #ffffff;
}

.contact .contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #666666;
}

.contact form {
  max-width: 700px;
  margin: 0 auto;
}

.contact form .form-group {
  margin-bottom: 1.5rem;
}

.contact form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact form .form-group input, .contact form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #e1e5ea;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.contact form .form-group input:focus, .contact form .form-group textarea:focus {
  outline: none;
  border-color: #3366ff;
}

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

.contact form .form-group .error-message {
  color: #3366ff;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.contact form .form-group .error-message.active {
  display: block;
}

.contact form button[type="submit"] {
  width: 100%;
}

/* Success Message Section */
.success-message {
  background-color: #f5f7fa;
  padding: 5rem 0;
}

.success-message .success-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #00c853;
}

.success-message .success-content h1 {
  margin-bottom: 2rem;
  color: #1e293b;
  font-size: 2rem;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .success-message .success-content h1 {
    font-size: 1.5rem;
  }
}

.success-message .success-content .next-steps h2 {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .success-message .success-content .next-steps h2 {
    font-size: 1.25rem;
  }
}

.success-message .success-content .next-steps ol {
  list-style-type: decimal;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.success-message .success-content .next-steps ol li {
  margin-bottom: 1rem;
  color: #666666;
}

.success-message .success-content .next-steps ol li:last-child {
  margin-bottom: 0;
}

.success-message .success-content .next-steps .encouragement {
  font-weight: 600;
  color: #1e293b;
  font-size: 1.1rem;
}

.success-message .success-content .next-steps .success-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 480px) {
  .success-message .success-content .next-steps .success-buttons {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .success-message .success-content .next-steps .success-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: #ffffff;
  padding: 4rem 0 1.5rem;
}

.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer .footer-brand {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
}

@media (max-width: 768px) {
  .footer .footer-brand {
    margin-bottom: 2rem;
  }
}

.footer .footer-brand h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer .footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-links {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 480px) {
  .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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer .footer-column {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .footer .footer-column:last-child {
    margin-bottom: 0;
  }
}

.footer .footer-column h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer .footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer .footer-column ul li:last-child {
  margin-bottom: 0;
}

.footer .footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer .footer-column ul li a:hover {
  color: #ffffff;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1e293b;
  padding: 1rem;
  z-index: 9999;
  display: none;
}

.cookie-consent.active {
  display: block;
}

.cookie-consent .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

@media (max-width: 768px) {
  .cookie-consent .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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.cookie-consent .cookie-content p {
  color: #ffffff;
  margin-bottom: 0;
  margin-right: 2rem;
}

@media (max-width: 768px) {
  .cookie-consent .cookie-content p {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}

.cookie-consent .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

@media (max-width: 480px) {
  .cookie-consent .cookie-content .cookie-buttons {
    width: 100%;
    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: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .cookie-consent .cookie-content .cookie-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .cookie-consent .cookie-content .cookie-buttons .btn:last-child {
    margin-bottom: 0;
  }
}
/*# sourceMappingURL=style.css.map */