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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.sidebar-header {
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar .logo {
  font-size: 2rem;
  font-weight: 600;
  color: #333333;
  text-align: left;
  padding-top: 1rem;
  padding-left: 5rem;
}
.sidebar .logo-img {
  height: 40px;
  width: auto;
}
.sidebar .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.sidebar .menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.sidebar .nav {
  flex: 1;
  padding-left: 2rem;
  overflow-y: auto;
}
.sidebar .nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar .nav-list li:hover {
  color: rgb(244, 95, 0);
  background: rgba(244, 95, 0, 0.05);
  border-left-color: rgb(244, 95, 0);
}
.sidebar .nav-list li {
  border-left: 3px solid transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  padding: 1.25rem 2rem;
}
.sidebar .nav-list li a {
  display: block;
  color: #333333;
  font-weight: 500;
  border-radius: 0;
}
.sidebar .nav-list li span {
  display: block;
  color: #333333;
  font-weight: 200;
  font-size: 0.875rem;
}

.content-wrapper {
  margin-left: 280px;
  transition: all 0.3s ease;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1001;
  background: rgb(244, 95, 0);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.menu-toggle:hover {
  background: #004499;
  transform: scale(1.05);
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}
.menu-toggle.hidden {
  display: none !important;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: -1;
}
.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.hero .container {
  max-width: px;
  margin: 0 auto;
  padding: 0 2rem;
  padding: 0;
  position: relative;
  z-index: 1;
}
.hero-content {
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
}
.hero-logo-img {
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
}
.hero-title {
  color: #333333;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.hero-description {
  padding: 1rem;
  color: #333333;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.8;
  text-align: left;
}
.hero-description ul {
  list-style-type: disc;
  padding-left: 1rem;
}
.hero-description li {
  margin-bottom: 0.5rem;
}

.main-content {
  background: #FFFFFF;
}

.background-gray-light {
  background: #eeeeee;
}

.background-white {
  background: #FFFFFF;
}

.feature-section {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  border-top: 1px solid #E0E0E0 !important;
  width: 100%;
  position: relative;
}
.feature-section:nth-child(even) {
  background: #F5F7FA;
}
.feature-section-alt {
  background: #F5F7FA;
}
.feature-section .container {
  max-width: px;
  margin: 0 auto;
  padding: 0 2rem;
}
.feature-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 2rem;
  grid-row: 1;
  grid-column: 1/-1;
}
.feature-section-header-actions {
  width: auto;
  grid-column: 1;
  grid-row: 2;
}
.feature-section-header-title {
  font-family: "Rethink Sans:Medium", sans-serif !important;
  font-size: clamp(2rem, 2vw, 2rem);
  font-weight: 800;
  color: #333333;
}
.feature-section-content {
  display: grid;
  grid-template-columns: 1fr 7fr;
  gap: 2rem;
  align-items: start;
}
.feature-section-number {
  font-family: "Rethink Sans:Medium", sans-serif !important;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  color: rgb(244, 95, 0);
  line-height: 1;
  font-family: "Arial", sans-serif;
  letter-spacing: -0.36px;
  margin-right: 1rem;
}
.feature-section-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  width: 100%;
}
.feature-section-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: rgb(244, 95, 0);
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.feature-section-link:hover {
  background: #004499;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 95, 0, 0.3);
}
.feature-section-link-icon {
  text-transform: lowercase;
  opacity: 0.9;
}
.feature-section-link-text {
  font-weight: 600;
}
.feature-section-preview {
  margin-top: 2rem;
  width: 80%;
  height: 80%;
  margin: 0 auto;
}

.footer {
  background: #333333;
  color: #FFFFFF;
  padding: 4rem 2rem 2rem;
  position: relative;
}
.footer .container {
  max-width: px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.footer-link:hover {
  color: #FFFFFF;
}
.footer-copyright {
  grid-column: 1/-1;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.footer .back-to-top {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgb(244, 95, 0);
  color: #FFFFFF;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer .back-to-top:hover {
  background: #004499;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sidebar {
    left: -280px;
    width: 280px;
  }
  .sidebar.active {
    left: 0;
  }
  .sidebar .menu-toggle {
    display: flex;
  }
  .sidebar .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .sidebar .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .sidebar .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .content-wrapper {
    margin-left: 0;
  }
  .floating-menu-btn {
    display: flex;
  }
  .floating-menu-btn.hidden {
    display: none !important;
  }
  .hero {
    padding: 6rem 2rem 4rem;
    min-height: auto;
  }
  .feature-section {
    margin-bottom: 2rem;
    margin-top: 2rem;
    padding: 4rem 2rem;
  }
  .feature-section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-section-number {
    font-size: 4rem;
    text-align: center;
  }
  .feature-section-info {
    padding-top: 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .footer .back-to-top {
    position: static;
    margin-top: 2rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .sidebar-header {
    padding: 1.5rem;
  }
  .sidebar .logo-img {
    height: 30px;
  }
  .hero {
    padding: 4rem 1.5rem 3rem;
  }
  .feature-section {
    padding: 3rem 1.5rem;
  }
}

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