body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #f9fafb;
      color: #1f2937;
      line-height: 1.65;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 40px 20px;
    }

    h1, h2, h3 {
      color: #111827;
      line-height: 1.3;
    }

    h1 {
      font-size: 2.6rem;
    }

    h2 {
      font-size: 2rem;
      margin-top: 70px;
    }

    p {
      font-size: 1.05rem;
      max-width: 900px;
    }

    .hero {
      background: linear-gradient(135deg, #2563eb, #1e3a8a);
      color: white;
      padding: 20px 20px 50px 20px;
      text-align: center;
    }

    .hero p {
      margin: 20px auto;
      font-size: 1.15rem;
    }

    /*.cta-btn {
      display: inline-block;
      margin-top: 25px;
      padding: 16px 34px;
      background: #22c55e;
      color: white;
      font-weight: bold;
      border-radius: 10px;
      text-decoration: none;
      font-size: 1.1rem;
    }

    .cta-btn:hover {
      background: #16a34a;
    }*/

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      margin-top: 50px;
    }

    .feature-box {
      background: white;
      padding: 25px;
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .video-section {
      margin-top: 70px;
      text-align: center;
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
      margin-top: 25px;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .footer {
      background: #111827;
      color: #9ca3af;
      text-align: center;
      padding: 35px 20px;
      /*margin-top: 20px;*/
    }

    .footer a {
      color: #22c55e;
      text-decoration: none;
    }
	
	header {
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
      width: 100%;
    }

    header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    header nav {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    header nav a {
      text-decoration: none;
      color: #1f2937;
      font-weight: 500;
    }

    header .nav-cta {
      padding: 8px 16px;
      font-size: 0.95rem;
      margin-top: 0;
    }
	
	
	.cta-group, .cta-group-bottom, .cta-group-bottom-home {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Primary button styling */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 420px;

  /*padding: 1rem 1.5rem;*/
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;

  border-radius: 10px;
  text-decoration: none;

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Platform colors */
.cta-btn.android {
  /*background-color: #1a73e8;*/
  color: #ffffff;
  max-width:300px;
}

.cta-btn.ios {
  /*background-color: #000000;*/
  color: #ffffff;
  max-width:270px;
}

.cta-btn.ios img {
  /*background-color: #e8ff00;*/
  color: #ffffff;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .cta-btn:hover {
    /*transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);*/
  }
}

/* Tablet & desktop layout */
@media (min-width: 640px) {
  .cta-group {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-group-bottom-home {
    flex-direction: row;
    justify-content: left;
  }

  /*.cta-btn {
    width: auto;
    min-width: 260px;
  }*/
  
  .cta-btn img {
  display: block;
  width: 100%;      /* fill parent */
  height: auto;
  }
}

/* Mobile layout */
@media (max-width: 639px) {

	.cta-btn.ios {
	max-width:300px;
	}
	
  .cta-btn.ios img {
	width:300px;
	height:100px;
  }
  
  .cta-group {
	align-items:center;
	flex-wrap: wrap;
  }
  
  .cta-group-bottom {
	align-items:center;
	flex-wrap: wrap;
  }
  
  .cta-group-bottom-home {
	  align-items:center;
  }
  
  .container-main {
	  padding: 0px 20px;
  }
  
  .cta-section {
	  margin-top:40px !important;
  }

}

/* ************************ Blog CSS ************************ */

    /*header {
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
    }*/

    nav {
      display: flex;
      gap: 28px;
      align-items: center;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: #1f2937;
      font-weight: 500;
    }

    .cta-btn {
      display: inline-block;
      /*padding: 10px 18px;*/
      /*background: #22c55e;*/
      color: white;
      font-weight: bold;
      border-radius: 10px;
      text-decoration: none;
      font-size: 1rem;
    }

    .cta-btn:hover {
      /*background: #16a34a;*/
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 50px;
    }

    .blog-card {
      background: white;
      padding: 25px;
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog-card h3 {
      margin-top: 0;
    }

    .blog-card p {
      font-size: 0.98rem;
    }

    .read-more {
      margin-top: 15px;
      font-weight: bold;
      color: #2563eb;
      text-decoration: none;
    }

    .read-more:hover {
      text-decoration: underline;
    }

    .cta-section {
      background: linear-gradient(135deg, #2563eb, #1e3a8a);
      color: white;
      padding: 40px 20px;
      margin-top: 20px;
      text-align: center;
      /*border-radius: 16px;*/
    }
	
	.cta-section h2 {
		margin-top:0px;
	}

    .cta-section p {
      font-size: 1.15rem;
      margin: 20px auto;
    }
	
	.container-main {
		max-width: 1100px;
		margin: auto;
		/*padding: 40px 20px;*/
	}

		.container-blog-list {
		max-width: 1100px;
		margin: auto;
		padding: 0px 20px;
	}
	
	/* New Editions 17012026 */

/* Platform colors */

/* Hover (desktop only) */
@media (hover: hover) {
  .cta-btn:hover {
    /*transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);*/
  }
}

/* Tablet & desktop layout */
@media (min-width: 640px) {
  .cta-group {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-group-bottom {
    flex-direction: row;
    justify-content: center;
  }

  /*.cta-btn {
    width: auto;
    min-width: 260px;
  }*/
  
}

/* Mobile layout */
@media (max-width: 639px) {

}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  font-size: 0.85rem;
  margin-bottom: 20px;
  padding-top: 0;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #9ca3af;
}

.breadcrumb a {
  color: #2563eb;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: #6b7280;
}

/* Mobile breadcrumb adjustments */
@media (max-width: 639px) {
  .breadcrumb-nav {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .breadcrumb li:not(:last-child)::after {
    margin: 0 8px;
  }
}

/* Article Metadata (Publication Date) */
.article-header {
  margin-bottom: 30px;
}

.article-meta {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 10px 0 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.article-meta .separator {
  color: #d1d5db;
}

.article-meta time {
  font-style: italic;
}

.article-meta .author {
  font-weight: 500;
}