@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #636E72;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

::selection {
  background: rgba(255, 107, 53, 0.2);
  color: #2D3436;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1070;
  padding: 12px 24px;
  background: #FF6B35;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus {
  top: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", sans-serif;
  color: #2D3436;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 2.25rem;
}
@media (min-width: 992px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .section-header {
    margin-bottom: 64px;
  }
}
.section-header .section-badge {
  display: inline-block;
  background: #FFF4EF;
  color: #FF6B35;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header h2 {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}
.section-header p {
  display: block;
  font-size: 1.125rem;
  color: #636E72;
  max-width: 600px;
  margin: 0;
}

.text-primary-custom {
  color: #FF6B35 !important;
}

.fw-800 {
  font-weight: 700;
}

.bg-light-warm {
  background-color: #FFF9F5;
}

.bg-section-alt {
  background-color: #FEF6F0;
}

.bg-primary-soft {
  background-color: #FFF4EF;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B35, #FF8F5E);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: #FFFFFF;
}
.btn-cta:active {
  transform: translateY(0);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #FF6B35;
  border: 2px solid #FF6B35;
  border-radius: 50px;
  padding: 12px 34px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-cta-outline:hover {
  background: #FF6B35;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-cta-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B35, #FF8F5E);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-cta-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: #FFFFFF;
}
.btn-cta-sm:active {
  transform: translateY(0);
}
.btn-cta-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.section {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .section {
    padding: 100px 0;
  }
}
.section {
  position: relative;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}
@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}
@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 56, 56, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 56, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 56, 56, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

.floating-star,
.floating-cloud,
.floating-dot {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.floating-star {
  animation: float 6s ease-in-out infinite;
}

.floating-cloud {
  animation: floatSlow 8s ease-in-out infinite;
}

.floating-dot {
  animation: floatReverse 5s ease-in-out infinite;
}

.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: calc(100% + 2px);
  height: 60px;
  position: relative;
}
@media (min-width: 768px) {
  .wave-divider svg {
    height: 80px;
  }
}
@media (min-width: 992px) {
  .wave-divider svg {
    height: 120px;
  }
}
.wave-divider--bottom {
  bottom: -1px;
}
.wave-divider--top {
  top: -1px;
}
.wave-divider--flip {
  transform: scaleY(-1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.site-header.scrolled .navbar-brand .header-logo {
  filter: none;
}
.site-header.scrolled .nav-link {
  color: #2D3436;
}
.site-header .navbar {
  padding: 16px 0;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .site-header .navbar {
    padding: 20px 0;
  }
}
.site-header .navbar-brand .header-logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .site-header .navbar-brand .header-logo {
    height: 48px;
  }
}
.site-header .navbar-toggler {
  border: none;
  padding: 4px;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}
.site-header .toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.site-header .toggler-icon span {
  display: block;
  height: 3px;
  background: #2D3436;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header .navbar-nav {
  gap: 4px;
}
@media (min-width: 992px) {
  .site-header .navbar-nav {
    gap: 8px;
  }
}
.site-header .nav-link {
  color: #2D3436;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #FF6B35;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.site-header .nav-link:hover, .site-header .nav-link.active {
  color: #FF6B35;
}
.site-header .nav-link:hover::after, .site-header .nav-link.active::after {
  transform: scaleX(1);
}
.site-header .header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}
.site-header .btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.site-header .btn-header-cta svg {
  flex-shrink: 0;
}
.site-header .btn-header-cta--outline {
  background: transparent;
  border: 2px solid #FF6B35;
  color: #FF6B35;
}
.site-header .btn-header-cta--outline:hover {
  background: rgba(255, 107, 53, 0.08);
  color: #FF6B35;
  transform: translateY(-2px);
}
.site-header .btn-header-cta--filled {
  background: linear-gradient(135deg, #FF6B35, #FF8F5E);
  border: 2px solid transparent;
  color: #FFFFFF;
}
.site-header .btn-header-cta--filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .site-header .btn-header-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  .site-header .btn-header-cta span {
    display: none;
  }
  .site-header .btn-header-cta svg {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .site-header .btn-header-cta {
    padding: 10px 24px;
  }
}
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    margin-top: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
}

body {
  padding-top: 76px;
}
@media (min-width: 992px) {
  body {
    padding-top: 84px;
  }
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #FFF4EF 0%, #F0F9F0 100%);
  overflow: hidden;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .hero-section {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .hero-section {
    padding-bottom: 120px;
  }
}
.hero-section .hero-swiper .swiper-slide {
  padding: 40px 0 60px;
}
@media (min-width: 992px) {
  .hero-section .hero-swiper .swiper-slide {
    padding: 60px 0 80px;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .hero-section .hero-content {
    text-align: left;
    margin-bottom: 0;
    padding-right: 40px;
  }
}
.hero-section .hero-content .hero-urgency {
  display: inline-block;
  background: #4CAF50;
  color: #FFFFFF;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
}
.hero-section .hero-content .hero-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-section .hero-content .hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .hero-section .hero-content .hero-trust-badges {
    margin-top: 28px;
  }
}
.hero-section .hero-content .hero-trust-badges .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 52, 54, 0.1);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2D3436;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .hero-section .hero-content .hero-trust-badges .trust-item {
    font-size: 0.875rem;
    padding: 10px 18px;
  }
}
.hero-section .hero-content .hero-trust-badges .trust-item svg {
  flex-shrink: 0;
}
.hero-section .hero-content h1,
.hero-section .hero-content .hero-title {
  margin-bottom: 20px;
  color: #2D3436;
}
@media (min-width: 992px) {
  .hero-section .hero-content h1,
  .hero-section .hero-content .hero-title {
    margin-bottom: 24px;
  }
}
.hero-section .hero-content p.hero-title {
  font-family: "Rubik", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 992px) {
  .hero-section .hero-content p.hero-title {
    font-size: 3.5rem;
  }
}
.hero-section .hero-content p:not(.hero-title) {
  font-size: 1rem;
  color: #636E72;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .hero-section .hero-content p:not(.hero-title) {
    font-size: 1.125rem;
    margin-left: 0;
  }
}
.hero-section .hero-content .btn-cta {
  margin-top: 15px;
}
.hero-section .hero-image-col {
  position: relative;
  z-index: 2;
}
.hero-section .hero-image-wrapper {
  position: relative;
}
.hero-section .hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
  max-height: 400px;
}
@media (min-width: 992px) {
  .hero-section .hero-image-wrapper img {
    max-height: 500px;
  }
}
.hero-section .hero-image-wrapper::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px dashed rgba(255, 107, 53, 0.2);
  border-radius: 30px;
  z-index: -1;
}
.hero-section .hero-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 350px;
  background: rgba(255, 107, 53, 0.05);
  border: 2px dashed rgba(255, 107, 53, 0.15);
  border-radius: 30px;
  color: #B2BEC3;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .hero-section .hero-image-placeholder {
    height: 450px;
  }
}
.hero-section .hero-pagination {
  bottom: 20px !important;
}
.hero-section .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 107, 53, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}
.hero-section .hero-pagination .swiper-pagination-bullet-active {
  background: #FF6B35;
  width: 36px;
  border-radius: 6px;
}
.hero-section .hero-prev,
.hero-section .hero-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: none;
}
@media (min-width: 992px) {
  .hero-section .hero-prev,
  .hero-section .hero-next {
    display: flex;
  }
}
.hero-section .hero-prev::after,
.hero-section .hero-next::after {
  font-size: 16px;
  color: #FF6B35;
  font-weight: 900;
}
.hero-section .hero-prev:hover,
.hero-section .hero-next:hover {
  background: #FF6B35;
}
.hero-section .hero-prev:hover::after,
.hero-section .hero-next:hover::after {
  color: #FFFFFF;
}

.certifications-bar {
  background: #FFFFFF;
  padding: 24px 0;
  border-bottom: 1px solid #E8E8E8;
}
@media (min-width: 768px) {
  .certifications-bar {
    padding: 32px 0;
  }
}
.certifications-bar .certifications-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .certifications-bar .certifications-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}
.certifications-bar .cert-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #B2BEC3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.certifications-bar .cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .certifications-bar .cert-logos {
    gap: 16px;
  }
}
.certifications-bar .cert-item {
  display: flex;
  align-items: center;
}
.certifications-bar .cert-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .certifications-bar .cert-badge {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}
.certifications-bar .cert-badge--meb {
  background: rgba(76, 175, 80, 0.1);
  color: #388E3C;
  border: 1px solid rgba(76, 175, 80, 0.2);
}
.certifications-bar .cert-badge--cambridge {
  background: rgba(0, 114, 206, 0.1);
  color: #0072CE;
  border: 1px solid rgba(0, 114, 206, 0.2);
}
.certifications-bar .cert-badge--goethe {
  background: rgba(0, 102, 51, 0.1);
  color: #006633;
  border: 1px solid rgba(0, 102, 51, 0.2);
}
.certifications-bar .cert-badge--akademik {
  background: rgba(255, 107, 53, 0.1);
  color: #E55A28;
  border: 1px solid rgba(255, 107, 53, 0.2);
}
.certifications-bar .cert-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-section {
  position: relative;
  padding: 80px 0;
  background: #2D3436;
  overflow: hidden;
}
@media (min-width: 768px) {
  .video-section {
    padding: 100px 0;
  }
}
.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.video-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.video-section .section-header .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.video-section .section-header h2 {
  color: #FFFFFF;
}
.video-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(229, 90, 40, 0.95));
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
}
.video-placeholder .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-placeholder .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 52, 54, 0.4);
}

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .video-play-btn {
    width: 100px;
    height: 100px;
  }
}
.video-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
@media (min-width: 768px) {
  .video-play-btn svg {
    width: 40px;
    height: 40px;
  }
}

.video-label {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-family: "Rubik", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .video-stats {
    gap: 60px;
  }
}

.video-stat {
  text-align: center;
}
.video-stat .stat-number {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
@media (min-width: 768px) {
  .video-stat .stat-number {
    font-size: 2.5rem;
  }
}
.video-stat .stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-section {
  position: relative;
  padding: 80px 0;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .gallery-section {
    padding: 100px 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 576px) {
  .gallery-grid {
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  text-decoration: none;
}
.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .gallery-item.gallery-item--featured {
    aspect-ratio: auto;
  }
}
@media (min-width: 768px) {
  .gallery-item.gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(76, 175, 80, 0.08));
  color: #B2BEC3;
  font-size: 0.75rem;
  text-align: center;
  padding: 12px;
}
.gallery-placeholder svg {
  opacity: 0.4;
}
.gallery-placeholder span {
  display: none;
}
@media (min-width: 576px) {
  .gallery-placeholder span {
    display: block;
  }
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 52, 54, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-overlay svg {
  stroke: #FFFFFF;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #E8E8E8;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #636E72;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: #FF6B35;
  border-color: #FF6B35;
  color: #FFFFFF;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}
.gallery-cta p {
  color: #636E72;
  margin-bottom: 16px;
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 52, 54, 0.95);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox .lightbox-content {
  max-width: 90%;
  max-height: 90%;
}
.gallery-lightbox .lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}
.gallery-lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-lightbox .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gallery-lightbox .lightbox-close svg {
  stroke: #FFFFFF;
}

.campus-section {
  position: relative;
  padding: 80px 0;
  background: #FEF6F0;
}
@media (min-width: 768px) {
  .campus-section {
    padding: 100px 0;
  }
}

.campus-showcase {
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .campus-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.campus-showcase-card {
  background: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.campus-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.campus-showcase-card:hover .campus-showcase-image img {
  transform: scale(1.05);
}
.campus-showcase-card.campus--kids {
  --campus-color: #FF6B35;
  --campus-bg: #FFF4EF;
}
.campus-showcase-card.campus--nasa {
  --campus-color: #4CAF50;
  --campus-bg: #F0F9F0;
}
.campus-showcase-card.campus--space {
  --campus-color: #2196F3;
  --campus-bg: #EBF5FF;
}

.campus-showcase-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .campus-showcase-image {
    height: 220px;
  }
}
.campus-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.campus-showcase-image .campus-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, var(--campus-bg), rgba(var(--campus-color), 0.1));
  color: #B2BEC3;
  font-size: 0.875rem;
}
.campus-showcase-image .campus-image-placeholder svg {
  opacity: 0.3;
}
.campus-showcase-image .campus-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--campus-color);
  color: #FFFFFF;
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.campus-showcase-content {
  padding: 24px;
}
@media (min-width: 768px) {
  .campus-showcase-content {
    padding: 28px;
  }
}
.campus-showcase-content h3 {
  font-family: "Rubik", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 8px;
}
.campus-showcase-content .campus-age {
  display: inline-block;
  background: var(--campus-bg);
  color: var(--campus-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.campus-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.campus-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed #E8E8E8;
  font-size: 0.875rem;
  color: #636E72;
}
.campus-features li:last-child {
  border-bottom: none;
}
.campus-features li svg {
  flex-shrink: 0;
  stroke: var(--campus-color);
}

.campus-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #E8E8E8;
}
.campus-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #636E72;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.campus-contact a:hover {
  color: var(--campus-color);
}
.campus-contact a svg {
  stroke: var(--campus-color);
}

.campus-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--campus-color);
  color: #FFFFFF;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.campus-cta-btn:hover {
  background: var(--campus-color);
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.virtual-tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  margin-top: 12px;
}
.virtual-tour-badge svg {
  width: 14px;
  height: 14px;
}

.campus-info-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .campus-info-bar {
    gap: 40px;
    padding: 32px 48px;
  }
}
@media (min-width: 992px) {
  .campus-info-bar {
    gap: 60px;
  }
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.info-bar-item svg {
  flex-shrink: 0;
}
.info-bar-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-bar-item strong {
  font-family: "Rubik", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2D3436;
}
.info-bar-item span {
  font-size: 0.75rem;
  color: #636E72;
}

.services-section {
  position: relative;
  overflow: visible;
}
.services-section .services-swiper {
  padding: 20px 10px 50px;
  margin: -20px -10px 0;
  overflow: visible !important;
}
.services-section .services-swiper .swiper-wrapper {
  overflow: visible;
}
.services-section .service-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}
.services-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.services-section .service-card {
  padding: 28px 20px;
  text-align: center;
  border-top: 4px solid var(--card-color, #FF6B35);
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 576px) {
  .services-section .service-card {
    padding: 32px 24px;
  }
}
@media (min-width: 992px) {
  .services-section .service-card {
    padding: 40px 28px;
  }
}
.services-section .service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--card-bg, #FFF4EF);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.services-section .service-card:hover::after {
  opacity: 0.3;
}
.services-section .service-card > * {
  position: relative;
  z-index: 1;
}
.services-section .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--card-bg, #FFF4EF);
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}
.services-section .service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--card-color, #FF6B35);
  transition: all 0.3s ease;
}
@media (min-width: 576px) {
  .services-section .service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }
  .services-section .service-icon svg {
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 992px) {
  .services-section .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  .services-section .service-icon svg {
    width: 40px;
    height: 40px;
  }
}
.service-card:hover .services-section .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.services-section .service-card h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
@media (min-width: 576px) {
  .services-section .service-card h4 {
    margin-bottom: 10px;
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  .services-section .service-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
  }
}
.services-section .service-card p {
  color: #636E72;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .services-section .service-card p {
    line-height: 1.7;
  }
}
.services-section .services-pagination {
  bottom: 0 !important;
}
.services-section .services-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 107, 53, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}
.services-section .services-pagination .swiper-pagination-bullet-active {
  background: #FF6B35;
  width: 24px;
  border-radius: 5px;
}
@media (min-width: 576px) {
  .services-section .services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .services-section .services-pagination .swiper-pagination-bullet-active {
    width: 28px;
  }
}
@media (hover: none) {
  .services-section .service-card:hover {
    transform: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  }
  .service-card:hover .services-section .service-icon {
    transform: none;
  }
}

.about-section {
  position: relative;
}
.about-section .about-image-wrapper {
  position: relative;
}
.about-section .about-image-wrapper img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}
.about-section .about-image-wrapper .about-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 2px, transparent 2px);
  background-size: 16px 16px;
  border-radius: 20px;
  z-index: -1;
}
.about-section .about-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 400px;
  background: rgba(255, 107, 53, 0.05);
  border: 2px dashed rgba(255, 107, 53, 0.15);
  border-radius: 30px;
  color: #B2BEC3;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .about-section .about-image-placeholder {
    height: 500px;
  }
}
.about-section .about-content .section-badge {
  display: inline-block;
  background: #FFF4EF;
  color: #FF6B35;
  font-family: "Nunito", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.about-section .about-content h2 {
  margin-bottom: 20px;
}
.about-section .about-content .about-intro {
  font-size: 1rem;
  color: #636E72;
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #E8E8E8;
}
.about-section .about-content .about-intro strong {
  color: #FF6B35;
}
.about-section .about-tabs .about-tab {
  padding-left: 20px;
  border-left: 4px solid #E8E8E8;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.about-section .about-tabs .about-tab.active, .about-section .about-tabs .about-tab:hover {
  border-left-color: #FF6B35;
}
.about-section .about-tabs .about-tab h5 {
  font-family: "Rubik", sans-serif;
  color: #2D3436;
  margin-bottom: 8px;
  font-weight: 700;
}
.about-section .about-tabs .about-tab p {
  color: #636E72;
  font-size: 1rem;
  line-height: 1.8;
}
.about-section .about-stats {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about-section .stat-item {
  flex: 1;
  min-width: 100px;
  background: #FFF4EF;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.about-section .stat-item:hover {
  background: #FF6B35;
}
.about-section .stat-item:hover .stat-number,
.about-section .stat-item:hover .stat-label {
  color: #FFFFFF;
}
.about-section .stat-number {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FF6B35;
  line-height: 1;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.about-section .stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #636E72;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.testimonials-section {
  position: relative;
}
.testimonials-section .testimonials-swiper {
  padding-bottom: 50px;
}
.testimonials-section .testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 32px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
}
@media (min-width: 768px) {
  .testimonials-section .testimonial-card {
    padding: 36px;
  }
}
.testimonials-section .testimonial-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
.testimonials-section .testimonial-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: #FF6B35;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .testimonials-section .testimonial-header {
    flex-wrap: nowrap;
  }
}
.testimonials-section .testimonial-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #FFF9F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #E8E8E8;
}
.testimonials-section .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-section .testimonial-info {
  flex: 1;
  min-width: 120px;
}
.testimonials-section .testimonial-info strong {
  display: block;
  color: #2D3436;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}
.testimonials-section .testimonial-info span {
  display: block;
  color: #B2BEC3;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 2px;
}
.testimonials-section .stars {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.testimonial-header .testimonials-section .stars {
  margin-bottom: 0;
}
.testimonials-section .testimonial-text {
  font-style: italic;
  color: #636E72;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.testimonials-section .testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid #E8E8E8;
}
.testimonials-section .testimonial-author strong {
  color: #2D3436;
  font-weight: 700;
  font-size: 1rem;
}
.testimonials-section .testimonial-author span {
  color: #FF6B35;
  font-size: 0.875rem;
  font-weight: 600;
}
.testimonials-section .testimonials-pagination {
  bottom: 0 !important;
}
.testimonials-section .testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 107, 53, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}
.testimonials-section .testimonials-pagination .swiper-pagination-bullet-active {
  background: #FF6B35;
  width: 28px;
  border-radius: 5px;
}

.faq-section {
  position: relative;
  background: #FFF9F5;
}
.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .faq-section .faq-accordion {
    gap: 16px;
  }
}
.faq-section .faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .faq-section .faq-item {
    border-radius: 20px;
  }
}
.faq-section .faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 107, 53, 0.2);
}
.faq-section .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .faq-section .faq-question {
    padding: 20px 24px;
  }
}
.faq-section .faq-question span {
  font-family: "Rubik", sans-serif;
  font-size: 0.938rem;
  font-weight: 600;
  color: #2D3436;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .faq-section .faq-question span {
    font-size: 1.125rem;
  }
}
.faq-section .faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #FF6B35;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .faq-section .faq-question svg {
    width: 24px;
    height: 24px;
  }
}
.faq-section .faq-question:not(.collapsed) {
  background: rgba(255, 107, 53, 0.03);
}
.faq-section .faq-question:not(.collapsed) svg {
  transform: rotate(180deg);
}
.faq-section .faq-question:hover {
  background: rgba(255, 107, 53, 0.04);
}
.faq-section .faq-answer {
  padding: 0 16px 16px;
}
@media (min-width: 768px) {
  .faq-section .faq-answer {
    padding: 0 24px 20px;
  }
}
.faq-section .faq-answer p {
  color: #636E72;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .faq-section .faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.faq-section .faq-answer p strong {
  color: #2D3436;
}

.contact-section {
  position: relative;
}
.contact-section .contact-form-wrapper {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 36px;
}
@media (min-width: 992px) {
  .contact-section .contact-form-wrapper {
    padding: 48px;
  }
}
.contact-section .form-intro {
  text-align: center;
  color: #636E72;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #E8E8E8;
}
.contact-section .form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #2D3436;
  margin-bottom: 6px;
}
.contact-section .form-control,
.contact-section .form-select {
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-size: 1rem;
  color: #2D3436;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
}
.contact-section .form-control::placeholder,
.contact-section .form-select::placeholder {
  color: #B2BEC3;
}
.contact-section .form-control:focus,
.contact-section .form-select:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.contact-section .form-select {
  cursor: pointer;
}
.contact-section textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-section form .btn-cta {
  margin-top: 8px;
  justify-content: center;
  padding: 16px 36px;
  font-size: 1.125rem;
}
.contact-section .spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-section .campus-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-section .campus-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.contact-section .campus-card:nth-child(1) {
  border-left-color: #FF6B35;
}
.contact-section .campus-card:nth-child(2) {
  border-left-color: #4CAF50;
}
.contact-section .campus-card:nth-child(3) {
  border-left-color: #2196F3;
}
.contact-section .campus-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.contact-section .campus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF4EF;
  flex-shrink: 0;
}
.contact-section .campus-info h5 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1rem;
}
.contact-section .campus-info p {
  color: #636E72;
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.contact-section .campus-info a {
  color: #FF6B35;
  font-weight: 700;
  font-size: 0.875rem;
}
.contact-section .campus-info a:hover {
  text-decoration: underline;
}
.contact-section .campus-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: #FEF6F0;
  border-radius: 12px;
  font-size: 0.875rem;
  color: #636E72;
  font-weight: 600;
}
.contact-section .campus-hours svg {
  flex-shrink: 0;
}

.site-footer {
  position: relative;
  margin-top: 60px;
  background: url("../images/footer-bg.png") center center/cover no-repeat;
  padding-bottom: 1.5rem;
  z-index: 0;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2D3436;
  opacity: 0.8;
  z-index: -1;
}
.site-footer .footer-cloud {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.site-footer .footer-emblem::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: 1;
}
.site-footer .footer-emblem img {
  position: relative;
  z-index: 2;
}
.site-footer .footer-content {
  text-align: center;
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}
.site-footer .footer-content hr {
  color: #FFFFFF;
  margin: 24px 0;
}
.site-footer .footer-content h5 {
  font-family: "Rubik", sans-serif;
}
.site-footer .footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-social-icons li {
  width: 40px;
  height: 40px;
}
.site-footer .footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.site-footer .footer-social-icons a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}
.site-footer .footer-social-icons img {
  height: 100%;
  width: auto;
}
.site-footer .footer-callcenter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
}
.site-footer .footer-callcenter img {
  height: 45px;
}
.site-footer .footer-callcenter p {
  font-size: 14px;
  color: #FFFFFF;
}
.site-footer .footer-callcenter a {
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
  margin-top: -11px;
  color: #FF8F5E;
  display: block;
  transition: all 0.3s ease;
}
.site-footer .footer-callcenter a:hover {
  color: #FF6B35;
}
.site-footer .footer-brand-title {
  text-align: center;
  margin-top: 40px;
  color: #FFFFFF;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
}
.site-footer .footer-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.site-footer .footer-partners li {
  list-style: none;
}
.site-footer .footer-partners img {
  height: 30px;
  width: auto;
}
.site-footer .footer-brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.site-footer .footer-brand-logos li {
  list-style: none;
  width: auto;
  height: auto;
}
.site-footer .footer-brand-logos img {
  height: 45px;
  width: auto;
}
.site-footer .footer-copyright {
  margin: 40px 0 0;
  color: #DFE6E9;
  font-size: 0.875rem;
}
.site-footer .footer-fabrika {
  text-align: center;
  position: relative;
  z-index: 1;
}
.site-footer .footer-fabrika a {
  display: inline-block;
  transition: all 0.3s ease;
}
.site-footer .footer-fabrika a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .site-footer .footer-content {
    margin-top: 25px;
  }
  .site-footer .footer-cloud {
    margin-top: -12px;
  }
  .site-footer .footer-social-icons {
    flex-wrap: wrap;
  }
  .site-footer .footer-social-icons img {
    height: 25px;
  }
  .site-footer .footer-partners img {
    height: 25px;
  }
  .site-footer .footer-brand-logos li {
    width: calc(50% - 8px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .site-footer .footer-brand-logos img {
    height: 35px;
  }
  .site-footer .footer-callcenter img {
    height: 35px;
  }
  .site-footer .footer-callcenter a {
    font-size: 28px;
    margin-top: 0;
  }
  .site-footer .footer-content h5 {
    margin-top: 10px !important;
  }
  .site-footer .footer-copyright {
    margin-top: 30px;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.active .modal-popup {
  transform: translateY(0);
  opacity: 1;
}

.modal-popup {
  background: #FFFFFF;
  border-radius: 30px;
  width: 100%;
  max-width: 440px;
  padding: 40px 32px;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal-popup {
    padding: 48px 40px;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 52, 54, 0.05);
  color: #636E72;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.modal-close:hover {
  background: rgba(45, 52, 54, 0.1);
  color: #2D3436;
}

.modal-header-custom {
  text-align: center;
  margin-bottom: 28px;
}
.modal-header-custom .modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFF4EF;
  margin: 0 auto 16px;
}
.modal-header-custom h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.modal-header-custom p {
  color: #636E72;
  font-size: 0.875rem;
}

#modalForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#modalForm .form-control,
#modalForm .form-select {
  padding: 14px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
#modalForm .form-control::placeholder,
#modalForm .form-select::placeholder {
  color: #B2BEC3;
}
#modalForm .form-control:focus,
#modalForm .form-select:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
#modalForm .btn-cta {
  margin-top: 4px;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.floating-buttons {
  position: fixed;
  z-index: 1040;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (min-width: 992px) {
  .float-btn {
    width: 60px;
    height: 60px;
  }
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-btn--whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #25D366;
  animation: pulseGreen 2s infinite;
}
.float-btn--whatsapp:hover {
  background: #1fb855;
}
.float-btn--phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #FF3838;
  animation: pulseRed 2s infinite;
}
.float-btn--phone:hover {
  background: #e62525;
}
.float-btn--top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  background: #FF6B35;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.float-btn--top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-btn--top:hover {
  background: #E55A28;
}

.blog-header {
  position: relative;
  padding: 120px 0 40px;
  overflow: hidden;
}
.blog-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/blog-header-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
.blog-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 1;
}
.blog-header .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .blog-header {
    padding: 140px 0 50px;
  }
}
.blog-header .breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.blog-header .breadcrumb a {
  color: #636E72;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-header .breadcrumb a:hover {
  color: #FF6B35;
}
.blog-header .breadcrumb .separator {
  color: #B2BEC3;
}
.blog-header .breadcrumb .current {
  color: #FF6B35;
  font-weight: 600;
}
.blog-header .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: #636E72;
}
.blog-header .blog-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-header .blog-meta .meta-item svg {
  stroke: #FF6B35;
}
.blog-header h1 {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2D3436;
  line-height: 1.3;
  margin-bottom: 16px;
}
.blog-header .blog-excerpt {
  font-size: 1.125rem;
  color: #636E72;
  line-height: 1.7;
  max-width: 700px;
}

.blog-content {
  padding: 40px 0 60px;
}
@media (min-width: 768px) {
  .blog-content {
    padding: 50px 0 80px;
  }
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
}
.blog-article .featured-image {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 30px;
  overflow: hidden;
}
.blog-article .featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.blog-article .featured-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 300px;
  background: rgba(255, 107, 53, 0.05);
  border: 2px dashed rgba(255, 107, 53, 0.15);
  border-radius: 30px;
  color: #B2BEC3;
  font-size: 0.875rem;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .blog-article .featured-image-placeholder {
    height: 400px;
  }
}
.blog-article h2 {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #2D3436;
  margin: 48px 0 20px;
  padding-top: 24px;
  border-top: 1px dashed #E8E8E8;
}
.blog-article h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.blog-article h3 {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #2D3436;
  margin: 32px 0 16px;
}
.blog-article p {
  font-size: 1rem;
  color: #636E72;
  line-height: 1.85;
  margin-bottom: 20px;
}
.blog-article ul, .blog-article ol {
  margin: 20px 0;
  padding-left: 24px;
}
.blog-article ul li, .blog-article ol li {
  font-size: 1rem;
  color: #636E72;
  line-height: 1.85;
  margin-bottom: 12px;
  padding-left: 8px;
}
.blog-article ul li::marker {
  color: #FF6B35;
}
.blog-article ol li::marker {
  color: #FF6B35;
  font-weight: 700;
}
.blog-article strong {
  color: #2D3436;
  font-weight: 700;
}
.blog-article a {
  color: #FF6B35;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 53, 0.3);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}
.blog-article a:hover {
  text-decoration-color: #FF6B35;
}
.blog-article blockquote,
.blog-article .highlight-box {
  background: #FFF4EF;
  border-left: 4px solid #FF6B35;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin: 32px 0;
}
.blog-article blockquote p,
.blog-article .highlight-box p {
  margin: 0;
  font-size: 1rem;
  color: #2D3436;
  font-style: normal;
}
.blog-article .info-box {
  background: #F0F9F0;
  border-left: 4px solid #4CAF50;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin: 32px 0;
}
.blog-article .info-box .info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #388E3C;
  margin-bottom: 12px;
}
.blog-article .info-box .info-title svg {
  stroke: #4CAF50;
}
.blog-article .info-box p {
  margin: 0;
  color: #636E72;
}
.blog-article .checklist {
  background: #FFF9F5;
  border-radius: 20px;
  padding: 24px;
  margin: 32px 0;
}
.blog-article .checklist h4 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 16px;
}
.blog-article .checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-article .checklist ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
}
.blog-article .checklist ul li:last-child {
  border-bottom: none;
}
.blog-article .checklist ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.blog-article .checklist ul li span {
  flex: 1;
}
.blog-article .table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 12px;
  border: 1px solid #E8E8E8;
}
.blog-article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.blog-article table th, .blog-article table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #E8E8E8;
}
.blog-article table th {
  background: #FFF4EF;
  font-weight: 700;
  color: #2D3436;
  white-space: nowrap;
}
.blog-article table td {
  color: #636E72;
}
.blog-article table tr:last-child td {
  border-bottom: none;
}
.blog-article table tr:hover td {
  background: rgba(255, 107, 53, 0.03);
}

.blog-cta {
  background: linear-gradient(135deg, #FF6B35, #FF8F5E);
  border-radius: 30px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}
.blog-cta h3 {
  font-family: "Rubik", sans-serif;
  color: #FFFFFF;
  margin: 0 0 12px;
  border: none;
  padding: 0;
}
.blog-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.blog-cta .btn,
.blog-cta .btn-cta {
  background: #FFFFFF;
  color: #FF6B35;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.blog-cta .btn:hover,
.blog-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #FF6B35;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF9F5;
  border-radius: 20px;
  padding: 24px;
  margin-top: 48px;
}
.blog-author .author-avatar {
  width: 64px;
  height: 64px;
  background: #FFF4EF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-author .author-avatar svg {
  stroke: #FF6B35;
}
.blog-author .author-info h4 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 4px;
}
.blog-author .author-info p {
  font-size: 0.875rem;
  color: #636E72;
  margin: 0;
}

@media (min-width: 992px) {
  .blog-sidebar {
    position: sticky;
    top: 100px;
  }
}
.blog-sidebar .sidebar-widget {
  background: #FFF9F5;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}
.blog-sidebar .sidebar-widget h4 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #2D3436;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FF6B35;
}
.blog-sidebar .sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar .sidebar-widget ul li {
  padding: 10px 0;
  border-bottom: 1px solid #E8E8E8;
}
.blog-sidebar .sidebar-widget ul li:last-child {
  border-bottom: none;
}
.blog-sidebar .sidebar-widget ul li a {
  color: #636E72;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.blog-sidebar .sidebar-widget ul li a:hover {
  color: #FF6B35;
}
.blog-sidebar .toc-widget ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-sidebar .toc-widget ul li a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #FF6B35;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.blog-sidebar .toc-widget ul li a:hover::before {
  opacity: 1;
}

.map-wrapper {
  margin: 32px 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}
@media (max-width: 600px) {
  .map-wrapper iframe {
    height: 280px;
  }
}

.internal-links {
  background: #FFF9F5;
  border-radius: 20px;
  padding: 24px 28px;
  margin: 48px 0;
}
.internal-links h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #2D3436;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}
.internal-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.internal-links ul li {
  margin: 0;
  padding: 0;
}
.internal-links ul a {
  display: inline-block;
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 50px;
  color: #636E72;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.internal-links ul a:hover {
  background: #FF6B35;
  border-color: #FF6B35;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.faq-item h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: #2D3436;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  font-size: clamp(1rem, 2vw, 1.15rem);
}
.faq-item p {
  margin: 0;
  color: #636E72;
  line-height: 1.8;
}
.faq-item a {
  color: #FF6B35;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 53, 0.3);
  text-underline-offset: 3px;
}
.faq-item a:hover {
  text-decoration-color: #FF6B35;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #636E72;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.back-link svg {
  transition: all 0.3s ease;
}
.back-link:hover {
  color: #FF6B35;
}
.back-link:hover svg {
  transform: translateX(-4px);
}

/*# sourceMappingURL=style.css.map */
