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

a{
  text-decoration: none;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1560px;
  margin: 0 auto;
}


.value-proposition {
  padding: 60px 20px;
  background-color: #ffffff;

  .container {
    max-width: 1560px;
    margin: 0 auto;
  }

  .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }

  .left-section {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-title {
    font-size: 42px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: right;
  }

  .description {
    font-size: 18px;
    color: #828282;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: right;
  }

  .cta-button {
    align-self: flex-end;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
  }

  /* Right Section - Features */
  .right-section {
    flex: 0 0 55%;
  }

  .features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
  }

  .feature-icon svg {
    width: 100%;
    height: 100%;
  }

  .feature-text {
    font-size: 26px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .content-wrapper {
      flex-direction: column;
      gap: 50px;
    }

    .main-title {
      text-align: left;
    }

    .left-section,
    .right-section {
      flex: 0 0 100%;
    }

    .description {
      text-align: left;
    }

    .cta-button {
      align-self: flex-start;
    }

    .main-title {
      font-size: 40px;
    }
  }

  @media (max-width: 768px) {
    .value-proposition {
      padding: 40px 20px;
    }

    .main-title {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .description {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .features-list {
      gap: 20px;
    }

    .feature-text {
      font-size: 16px;
    }
  }
}

/* Services Section */
.services-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97757;
  flex-shrink: 0;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  line-height: 1.3;
}

.service-description {
  font-size: 18px;
  font-weight: 500;
  color: #828282;
  line-height: 1.5;
  margin-top: 12px;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-description {
    font-size: 13px;
  }
}
.growth-partner-section {
  padding: 80px 0 80px 20px;
  background-color: #F8F8F8;
  overflow: hidden;

  .partner-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
    max-width: 100%;
  }

  .partner-content {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
  }

  .partner-title {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
  }

  .partner-description {
    font-size: 18px;
    font-weight: 500;
    color: #828282;
    line-height: 1.6;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .feature-item {
    font-size: 18px;
    font-weight: 500;
    color: #828282;
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
  }

  .feature-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #828282;
    font-weight: bold;
  }
}

.growth-partner-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.partner-button {
  align-self: flex-start;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: #000000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.partner-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.partner-image {
  flex: 0 0 55%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  /*margin-right: -20px;*/
  /*padding-right: 20px;*/
}

.partner-image img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Responsive Design for Growth Partner */
@media (max-width: 1200px) {
  .growth-partner-section {
    padding: 60px 0 60px 20px;
  }

  .growth-partner-section .container {
    max-width: 1560px;
    margin: 0 auto;
  }

  .partner-wrapper {
    flex-direction: column;
    gap: 50px;
    align-items: flex-start !important;
  }

  .partner-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 20px 0 0;
    margin: 0 !important;
  }

  .partner-image {
    flex: 0 0 100%;
    margin-right: 0;
    justify-content: center;
    margin-left: auto !important;
  }

  .partner-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .growth-partner-section {
    padding: 40px 0 40px 20px;
  }

  .partner-wrapper {
    gap: 30px;
  }

  .partner-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .partner-description {
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    font-size: 14px;
  }

  .partner-image {
    justify-content: center;
  }
}
.products-services-section {
  padding: 80px 20px 0;
  background-color: #ffffff;
}

.ps-header {
  text-align: center;
  margin-bottom: 60px;
}

.ps-title {
  font-size: 42px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ps-subtitle {
  font-size: 18px;
  color: #828282;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 auto;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1560px;
  margin: 0 auto;
}

.ps-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #F8F8F8;
}

.ps-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.ps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  padding: 0 16px;
}

.ps-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 24px 12px;
}

.ps-card-list li {
  font-size: 22px;
  font-weight: 500;
  color: #828282;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.ps-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #828282;
  font-weight: bold;
}

/* Responsive Design for Products and Services */
@media (max-width: 1024px) {
  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .products-services-section {
    padding: 40px 20px;
  }

  .ps-header {
    margin-bottom: 40px;
  }

  .ps-title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .ps-subtitle {
    font-size: 18px;
  }

  .ps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ps-image {
    height: 220px;
  }

  .ps-card-title {
    font-size: 18px;
  }

  .ps-card-list li {
    font-size: 14px;
  }
}
.trusted-section {
  margin: 80px 0 0;
  background-color: #F8F8F8;
  overflow: hidden;
}

.trusted-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.trusted-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 100%;
}

.trusted-content {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}

.trusted-title {
  font-size: 42px;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
}

.trusted-description {
  font-size: 18px;
  font-weight: 500;
  color: #888888;
  line-height: 1.6;
}

.trusted-rating {
  display: flex;
  gap: 8px;
  align-items: center;
}

.star {
  font-size: 32px;
  color: #ffc107;
  line-height: 1;
}

.trusted-button {
  align-self: flex-start;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: #000000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.trusted-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.trusted-image {
  flex: 0 0 55%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-right: -20px;
}

.trusted-image img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .trusted-section {
    padding: 60px 20px;
  }

  .trusted-section .container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .trusted-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .trusted-content {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }

  .trusted-image {
    flex: 0 0 100%;
    margin-right: 0;
    justify-content: center;
  }

  .trusted-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .trusted-section {
    padding: 40px 20px;
  }

  .trusted-wrapper {
    gap: 30px;
  }

  .trusted-title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .trusted-description {
    font-size: 18px;
  }

  .star {
    font-size: 28px;
  }

  .trusted-button {
    padding: 12px 32px;
    font-size: 15px;
  }

  .trusted-image {
    justify-content: center;
  }

  .trusted-image img {
    max-height: 400px;
  }
}
.help-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.help-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.help-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.help-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.help-section .container {
  position: relative;
  z-index: 2;
  max-width: 1560px;
}

.help-header {
  text-align: center;
  margin-bottom: 60px;
}

.help-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.help-subtitle {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.5;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.help-card {
  background-color: #ffffff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.help-card:hover {
  transform: translateY(-5px);
}

.help-card-icon {
  width: 60px;
  height: 60px;
  background-color: #d97757;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.help-card-icon svg {
  width: 32px;
  height: 32px;
}

.help-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.help-card-description {
  font-size: 16px;
  color: #828282;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .help-section {
    padding: 60px 20px;
  }

  .help-header {
    margin-bottom: 40px;
  }

  .help-title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .help-subtitle {
    font-size: 16px;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .help-card {
    padding: 30px 20px;
  }

  .help-card-icon {
    width: 50px;
    height: 50px;
    margin-top: -40px;
  }

  .help-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .help-card-title {
    font-size: 16px;
  }

  .help-card-description {
    font-size: 14px;
  }
}
/* Footer */
.footer {
  background-color: #000000;
  padding: 60px 20px;
  color: #ffffff;
}

.footer .container {
  max-width: 1560px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 210px;
  height: auto;
}

.footer-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-link:hover {
  color: #cccccc;
}

.footer-copyright {
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.5;
}

.footer-copyright p {
  margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-logo svg {
    width: 150px;
  }

  .footer-nav {
    gap: 20px;
    flex-direction: column;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 20px;
  }

  .footer-logo svg {
    width: 130px;
  }

  .footer-nav {
    gap: 15px;
  }

  .footer-link {
    font-size: 13px;
  }
}
/* Header and Navigation */
.header {
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar-logo svg {
  width: 160px;
  height: auto;
}

.navbar-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.navbar-link {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
}

.navbar-link:hover {
  color: #cccccc;
}

.navbar-button {
  background-color: transparent;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.navbar-button:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 120px 20px 20px;
}

.hero-content .container {
  max-width: 1240px;
  margin: 0 auto;
}

.hero-title {
  font-size: 100px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 20px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  padding: 16px 40px;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  background-color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar-wrapper {
    gap: 20px;
  }

  .navbar-menu {
    gap: 20px;
  }

  .navbar-logo svg {
    width: 140px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }

  .navbar-logo svg {
    width: 120px;
  }

  .navbar-menu {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .navbar-link {
    font-size: 14px;
  }

  .navbar-button {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 100px 20px 20px;
  }

  .hero-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}

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

  .navbar-wrapper {
    gap: 10px;
  }

  .navbar-logo svg {
    width: 100px;
  }

  .navbar-menu {
    gap: 10px;
  }

  .navbar-link {
    font-size: 12px;
  }

  .navbar-button {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero {
    min-height: 400px;
    max-height: 900px;
  }

  .hero-content {
    padding: 80px 15px 15px;
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-button {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
  z-index: 105;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
    order: 2;
  }

  .navbar-wrapper {
    position: relative;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    /*max-height: 0;*/
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    justify-content: flex-start;
    width: 100%;
  }

  .navbar-menu.active {
    max-height: 400px;
    opacity: 1;
  }

  .navbar-link {
    padding: 10px 0;
    font-size: 14px;
  }

  .navbar-button {
    order: 3;
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    display: flex;
    flex-direction: column;
  }

  .navbar-menu {
    opacity: 0;
  }

  .navbar-menu.active {
    max-height: 350px;
    opacity: 1;
  }

  .navbar-link {
    font-size: 14px;
    padding: 8px 0;
  }
}