.page-index {
  color: #404040;
}

.page-index__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); 
  overflow: hidden;
  background-color: #F3F3F3;
}

.page-index__hero-carousel {
  position: relative;
  max-width: 100%;
}

.page-index__hero-slides {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%; 
  overflow: hidden;
}

.page-index__hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.6s ease;
  z-index: 0;
}

.page-index__hero-slide.active {
  transform: translateX(0);
  z-index: 1;
}

.page-index__hero-slide.prev {
  transform: translateX(-100%);
  z-index: 0;
}

.page-index__hero-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.page-index__hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.page-index__hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.page-index__hero-dot.active {
  background: #ffffff;
}

.page-index__hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.page-index__articles-section {
  padding: 60px 20px;
  background-color: #F3F3F3;
}

.page-index__articles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__articles-main-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 40px;
  text-align: left;
}

.page-index__articles-title-small {
  font-size: 16px;
  font-weight: 900;
  color: #025BE8;
}

.page-index__articles-title-large {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  color: #025BE8;
}

.page-index__category-section {
  margin-bottom: 60px;
  padding: 30px;
  background: #ffffff;
  border-radius: 40px;
}

.page-index__category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.page-index__category-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 1;
  min-width: 0;
}

.page-index__category-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.page-index__category-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #404040;
}

.page-index__category-read-more {
  color: #025BE8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-index__category-read-more:hover {
  color: #1266EC;
  text-decoration: underline;
}

.page-index__articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.page-index__article-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.3s ease;
}

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

.page-index__article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index__article-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%; 
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 0;
}

.page-index__article-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-index__article-provider-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.page-index__article-title-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-top: 12px;
}

.page-index__article-title {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #404040;
  transition: color 0.3s ease;
}

.page-index__article-title-link:hover .page-index__article-title {
  color: #025BE8;
}

.page-index__partners-section {
  padding: 60px 20px;
  background: #F3F3F3;
}

.page-index__partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.page-index__partner-item {
  background-color: #E5EEFD;
  border-radius: 10px;
  padding-left: 19px;
  padding-right: 19px;
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #c5c5c5;
  border-right-color: #c5c5c5;
  border-bottom-color: #c5c5c5;
  border-left-color: #c5c5c5;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.page-index__partner-logo {
  width: 167px;
  height: 127px;
  object-fit: contain;
  display: block;
}

.page-index__info-section {
  padding: 60px 20px;
  background: #ffffff;
}

.page-index__info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__info-main-title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 600;
  text-align: left;
  margin-bottom: 40px;
  color: #404040;
  line-height: 1.3;
}

.page-index__info-content {
  line-height: 1.8;
  color: #404040;
}

.page-index__info-subsection {
  margin-bottom: 40px;
}

.page-index__info-subtitle {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  margin-bottom: 20px;
  color: #404040;
}

.page-index__info-content h4 {
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #404040;
}

.page-index__info-content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #404040;
}

.page-index__info-list {
  margin: 20px 0;
  padding-left: 30px;
}

.page-index__info-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: #404040;
}

.page-index__info-first-section {
  margin-bottom: 40px;
}

.page-index__info-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.page-index__info-expandable.expanded {
  max-height: 5000px;
}

.page-index__load-less-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 40px auto 0;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__load-less-text {
  color: #025BE8;
  transition: color 0.3s ease;
}

.page-index__load-less-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #025BE8;
  transition: color 0.3s ease;
}

.page-index__load-less-arrow {
  font-size: 14px;
  line-height: 1;
  display: block;
}

.page-index__load-less-btn.collapsed .page-index__load-less-text {
  color: #025BE8;
}

.page-index__load-less-btn.collapsed .page-index__load-less-icon {
  color: #025BE8;
}

.page-index__load-less-btn.collapsed .page-index__load-less-arrow {
  display: block;
}

.page-index__load-less-btn.collapsed .page-index__load-less-arrow:nth-child(3) {
  display: block;
}

.page-index__load-less-btn.expanded .page-index__load-less-text {
  color: #1266EC;
}

.page-index__load-less-btn.expanded .page-index__load-less-icon {
  color: #1266EC;
}

.page-index__load-less-btn.expanded .page-index__load-less-arrow {
  display: block;
}

.page-index__load-less-btn.expanded .page-index__load-less-arrow:nth-child(3) {
  display: none;
}

@media (max-width: 768px) {
  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index__section,
  .page-index__card,
  .page-index__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-index__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  
  .page-index__hero-carousel {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 15px;
  }
  
  .page-index__hero-slides {
    padding-bottom: 50%; 
    border-radius: 12px;
    overflow: hidden;
  }
  
  .page-index__hero-slide {
    border-radius: 12px;
    overflow: hidden;
  }
  
  .page-index__hero-image {
    border-radius: 12px;
  }
  
  .page-index__hero-indicators {
    bottom: 15px;
  }
  
  .page-index__hero-dot {
    width: 10px;
    height: 10px;
  }

  .page-index__articles-section {
    padding: 40px 15px;
  }
  
  .page-index__articles-container {
    max-width: 100%;
    padding: 0;
  }
  
  .page-index__articles-main-title {
    margin-bottom: 30px;
  }
  
  .page-index__articles-title-small {
    font-size: 14px;
  }
  
  .page-index__articles-title-large {
    font-size: 28px;
  }
  
  .page-index__category-section {
    margin-bottom: 40px;
    padding: 20px 15px;
    border-radius: 8px;
  }
  
  .page-index__category-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
  }
  
  .page-index__category-title {
    font-size: 20px;
  }
  
  .page-index__category-icon {
    width: 24px;
    height: 24px;
  }
  
  .page-index__category-read-more {
    font-size: 14px;
    white-space: nowrap;
  }
  
  .page-index__articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .page-index__article-title {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .page-index__article-title-link {
    margin-top: 10px;
  }
  
  .page-index__article-image {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .page-index__article-thumbnail {
    max-width: 100%;
    overflow: hidden;
  }

  .page-index__partners-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  
  .page-index__partner-item {
    width: 100%;
    max-width: 167px;
    height: 127px;
  }
  
  .page-index__partner-logo {
    width: 100%;
    max-width: 167px;
    height: 127px;
  }

  .page-index__info-main-title {
    font-size: 28px;
    text-align: left;
  }
  
  .page-index__info-subtitle {
    font-size: 24px;
  }
  
  .page-index__load-less-btn,
  .page-index__cta-button,
  .page-index__btn-primary,
  .page-index__btn-secondary,
  .page-index a[class*="button"],
  .page-index a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-index__cta-buttons,
  .page-index__button-group,
  .page-index__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-index__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-index__articles-section {
    padding: 30px 10px;
  }
  
  .page-index__articles-main-title {
    margin-bottom: 25px;
  }
  
  .page-index__articles-title-small {
    font-size: 12px;
  }
  
  .page-index__articles-title-large {
    font-size: 22px;
  }
  
  .page-index__category-section {
    margin-bottom: 30px;
    padding: 15px 10px;
  }
  
  .page-index__category-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  
  .page-index__category-title {
    font-size: 18px;
  }
  
  .page-index__category-read-more {
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .page-index__category-title-wrapper {
    flex-shrink: 1;
    min-width: 0;
  }
  
  .page-index__articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .page-index__article-title {
    font-size: 14px;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .page-index__article-title-link {
    margin-top: 8px;
  }
  
  .page-index__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  .page-index__article-thumbnail {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .page-index__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-index__partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-index__info-main-title {
    font-size: 22px;
  }
  
  .page-index__info-subtitle {
    font-size: 20px;
  }
}

/* Blog Section Styles - Auto Generated */
.latest-blog-section {
  padding: 40px 20px;
  margin: 20px 0;
}

.latest-blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.latest-blog-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.latest-blog-section p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-card .blog-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.blog-card .blog-content {
  padding: 20px;
}

.blog-card .blog-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card .blog-content .blog-title-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card .blog-content .blog-title-link:hover {
  color: #007bff;
}

.blog-card .blog-content .blog-excerpt {
  color: #666;
  line-height: 1.7;
  margin: 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
}

.blog-card .blog-content .blog-date {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin: 15px 0 12px 0;
}

.blog-card .blog-content .read-more-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.blog-card .blog-content .read-more-link:hover {
  background: #0056b3;
}

.view-all-posts {
  text-align: center;
  margin-top: 30px;
}

.view-all-posts .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.view-all-posts .cta-button.secondary {
  background: #6c757d;
}

.view-all-posts .cta-button.secondary:hover {
  background: #5a6268;
}

.view-all-posts .cta-button:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
  
  .latest-blog-section h2 {
    font-size: 1.5rem;
  }
  
  .blog-card .blog-img {
    height: 250px;
  }
  
  .blog-card .blog-content {
    padding: 15px;
  }
}


/* blog-image-link-styles */
.blog-image-link,
.news-image-link,
a.blog-list__cover-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-image-link img,
.news-image-link img {
  display: block;
  width: 100%;
}
.page-index__blog-item .blog-image-link,
.page-index__news-item .news-image-link {
  line-height: 0;
}
tton.secondary {
  background: #6c757d;
}

.view-all-posts .cta-button.secondary:hover {
  background: #5a6268;
}

.view-all-posts .cta-button:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
  
  .latest-blog-section h2 {
    font-size: 1.5rem;
  }
  
  .blog-card .blog-img {
    height: 250px;
  }
  
  .blog-card .blog-content {
    padding: 15px;
  }
}


/* blog-image-link-styles */
.blog-image-link,
.news-image-link,
a.blog-list__cover-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-image-link img,
.news-image-link img {
  display: block;
  width: 100%;
}
.page-index__blog-item .blog-image-link,
.page-index__news-item .news-image-link {
  line-height: 0;
}
 #6c757d;
}

.view-all-posts .cta-button.secondary:hover {
  background: #5a6268;
}

.view-all-posts .cta-button:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
  
  .latest-blog-section h2 {
    font-size: 1.5rem;
  }
  
  .blog-card .blog-img {
    height: 250px;
  }
  
  .blog-card .blog-content {
    padding: 15px;
  }
}


/* blog-image-link-styles */
.blog-image-link,
.news-image-link,
a.blog-list__cover-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-image-link img,
.news-image-link img {
  display: block;
  width: 100%;
}
.page-index__blog-item .blog-image-link,
.page-index__news-item .news-image-link {
  line-height: 0;
}
