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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.d-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
}

/* Enhanced Header Styles */
.title-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    padding: 2.5rem 3rem;
    text-align: center;
    border-bottom: none;
    margin: 20px auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(52, 152, 219, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    margin-bottom: 1.8rem;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05) translateY(-2px);
}

.subtitle {
    color: #4a5568;
    font-size: 1.15rem;
    margin: 1.2rem 0 2.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.header-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.8rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(52, 152, 219, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(52, 152, 219, 0.08);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c5282;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    min-width: 90px;
    display: inline-block;
    text-align: center;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    font-weight: 600;
    max-width: 130px;
    line-height: 1.4;
}

.title-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
    background-size: 200% 100%;
    animation: gradientMove 4s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Responsive Header Styles */
@media (max-width: 768px) {
    .title-card {
        padding: 2rem 1.5rem;
        margin: 15px auto;
        border-radius: 12px;
    }

    .logo-img {
        height: 45px;
    }

    .subtitle {
        font-size: 1.05rem;
        margin: 1rem 0 1.8rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 1.2rem;
        padding-top: 1.5rem;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        justify-content: space-between;
        padding: 1.2rem 1.8rem;
        gap: 1.2rem;
        min-width: auto;
    }

    .stat-number {
        font-size: 1.8rem;
        text-align: right;
    }

    .stat-label {
        font-size: 0.85rem;
        text-align: left;
        max-width: none;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .title-card {
        padding: 1.75rem 2rem;
    }

    .logo-img {
        height: 50px;
    }

    .title {
        font-size: 2.2rem;
    }

    .header-stats {
        gap: 1.5rem;
    }

    .stat-item {
        min-width: 140px;
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: countUp 0.8s ease-out forwards;
    animation-delay: calc(var(--item-index) * 0.15s);
}

.stat-item:nth-child(1) { --item-index: 1; }
.stat-item:nth-child(2) { --item-index: 2; }
.stat-item:nth-child(3) { --item-index: 3; }
.stat-item:nth-child(4) { --item-index: 4; }

.title {
    margin: 0;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3498db;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.title-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
}

.title-card:hover .title::after {
    width: 100%;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Add subtle animation for page load */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-card {
    animation: fadeInDown 0.8s ease-out forwards;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  margin: 20px 0;
}
.image-container img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.content {
  background-color: #ffffff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.content p {
  margin-bottom: 15px;
  color: #333;
}

.content-image img {
  width: 200px;
  height: 200px;
}
.subsection {
  margin-top: 20px;
}

h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

h3 {
  color: #34495e;
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem 0;
}

.content p {
  text-align: justify;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}
.content-image-wrapper {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Additional styling for the financial support section */
#financial-support p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-image-wrapper {
    margin: 1.5rem 0;
  }
}

/* Feature list styling */
.unique-features,
.sdg-goals {
  margin: 2rem 0;
}

.feature-list,
.sdg-list {
  list-style-type: none;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.feature-list li,
.sdg-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.feature-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
}

.sdg-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3498db;
}

/* Content image wrapper (already defined but included for completeness) */
.content-image-wrapper {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-list li,
  .sdg-list li {
    padding-left: 1rem;
    margin-bottom: 0.8rem;
  }
}
.partners-section {
  margin: 2.5rem 0;
}

.partners-section h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.partner-description {
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.partner-list {
  list-style-type: none;
  padding-left: 0;
  column-count: 2;
  column-gap: 2rem;
}

.partner-list.numbered {
  counter-reset: partner-counter;
}

.partner-list.numbered li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  break-inside: avoid-column;
}

.partner-list.numbered li::before {
  counter-increment: partner-counter;
  content: counter(partner-counter) ".";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .partner-list {
    column-count: 1;
  }

  .partners-section h3 {
    font-size: 1.2rem;
  }

  .partner-list.numbered li {
    padding-left: 1.5rem;
  }
}

#anchor-catalyst-partners h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.content-block {
  margin-top: 1.5rem;
}

.content-block p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #anchor-catalyst-partners h2 {
    font-size: 1.5rem;
  }

  .content-block {
    margin-top: 1rem;
  }

  .content-block p {
    margin-bottom: 1rem;
  }
}

.stakeholder-section {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.stakeholder-section h4 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

.stakeholder-section ol {
  padding-left: 2rem;
  list-style-type: decimal;
}

.stakeholder-section li {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #444;
}

.stakeholder-section strong {
  color: #222;
  display: block;
  margin-bottom: 0.5rem;
}

.summary {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f0f0f0;
  border-left: 4px solid #666;
  font-style: italic;
}
.compliance-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.compliance-section h4 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

.compliance-section ol {
  padding-left: 2rem;
  margin-top: 1rem;
}

.compliance-section li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cohorts-table {
  margin: 2rem 0;
  overflow-x: auto;
}

.cohorts-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.cohorts-table th {
  background-color: #f4f4f4;
  padding: 1rem;
  text-align: left;
  border: 1px solid #ddd;
}

.cohorts-table td {
  padding: 1rem;
  border: 1px solid #ddd;
  vertical-align: top;
}

.cohorts-table strong {
  display: block;
  margin-bottom: 0.5rem;
}
.analysis-intro {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.criteria-list {
  margin-top: 1rem;
  padding-left: 2rem;
}

.criteria-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.criteria-list strong {
  color: #444;
}

.analysis-findings {
  margin-top: 2rem;
}

.content-image-wrapper {
  margin: 2rem 0;
  text-align: center;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footnote {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #666;
}

.footnote sup {
  margin-right: 0.3rem;
}

.key-findings {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.findings-list {
  list-style-type: none;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.findings-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.findings-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
}

.definition-box {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f0f0f0;
  border-left: 4px solid #3498db;
  font-style: italic;
}

.crucial-factors {
  margin: 2rem 0;
}

.crucial-factors ol {
  padding-left: 2rem;
  margin-top: 1rem;
}

.crucial-factors li {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.crucial-factors strong {
  color: #444;
  display: block;
  margin-bottom: 0.5rem;
}

.repayment-analysis {
  margin-top: 2rem;
}

.gender-analysis {
  margin: 2rem 0;
}

.non-repayment-causes {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.non-repayment-causes h4 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.causes-list {
  padding-left: 2rem;
}

.causes-list li {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #444;
}

.content-image-wrapper {
  margin: 2.5rem 0;
  text-align: center;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footnote {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .non-repayment-causes {
    padding: 1rem;
  }

  .causes-list li {
    margin-bottom: 1rem;
  }
}
.partner-intro {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.partner-intro p {
  margin-bottom: 1.5rem;
}

.partner-analysis {
  margin: 2rem 0;
}

.capacity-building {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.capacity-building p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.capacity-building p:last-child {
  margin-bottom: 0;
}

.content-image-wrapper {
  margin: 2.5rem 0;
  text-align: center;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footnote {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .capacity-building {
    padding: 1rem;
  }
}
.case-study {
  margin: 3rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.case-study h4 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.case-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.case-image {
  flex: 0 0 300px;
}

.case-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.case-text {
  flex: 1;
}

.case-text p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.impact-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fff;
  border-left: 4px solid #3498db;
}

.impact-box strong {
  color: #3498db;
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .graph-section {
    padding: 1rem;
  }
  .case-content {
    flex-direction: column;
  }

  .case-image {
    flex: 0 0 auto;
    margin-bottom: 1.5rem;
  }

  .case-study {
    padding: 1.5rem;
  }
}
.feedback-section {
  margin: 3rem 0;
}

.feedback-stats {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.feedback-stats p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.key-strengths {
  margin: 2rem 0;
}

.key-strengths h4 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.key-strengths ol {
  padding-left: 2rem;
}

.key-strengths li {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.customization-section {
  margin: 3rem 0;
}

.partner-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.example-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #3498db;
}

.example-card h5 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.example-card p {
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .feedback-stats {
    padding: 1.5rem;
  }

  .partner-examples {
    grid-template-columns: 1fr;
  }
}

.scaling-section {
  margin: 3rem 0;
}

.intro-text {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.intro-text p {
  margin-bottom: 1.5rem;
}

.innovations-section {
  margin: 2rem 0;
}

.innovations-section h4 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.innovations-list {
  padding-left: 2rem;
}

.innovations-list li {
  margin-bottom: 2rem;
}

.innovations-list p {
  line-height: 1.6;
  color: #444;
}

.credit-guarantees {
  margin: 3rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.credit-guarantees ol {
  margin-top: 1.5rem;
  padding-left: 2rem;
}

.credit-guarantees li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pfp-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #eee;
}

.pfp-section h3 {
  margin-bottom: 2rem;
}

.content-image-wrapper {
  margin: 2rem 0;
  text-align: center;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .credit-guarantees {
    padding: 1.5rem;
  }

  .innovations-list li {
    margin-bottom: 1.5rem;
  }
}

.subsidy-intro {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.subsidy-intro p {
  margin-bottom: 1.5rem;
}

.ab-testing {
  margin-top: 3rem;
}

.ab-testing h4 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.testing-results {
  margin-top: 2rem;
}

.company-result {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.company-result h5 {
  color: #3498db;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.company-result p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.content-image-wrapper {
  margin: 2rem 0;
  text-align: center;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .company-result {
    padding: 1.5rem;
  }

  .ab-testing h4 {
    font-size: 1.2rem;
  }
}

.key-takeaways {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.key-takeaways h4 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.key-takeaways ol {
  padding-left: 2rem;
}

.key-takeaways li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.arth-digital {
  margin: 3rem 0;
}

.arth-digital h4 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.stats-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-left: 4px solid #3498db;
  border-radius: 0 8px 8px 0;
}

.digital-tools {
  margin: 3rem 0;
}

.digital-tools h3 {
  margin-bottom: 1.5rem;
}

.digital-tools p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footnote {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #666;
}

.content-image-wrapper {
  margin: 2rem 0;
  text-align: center;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .key-takeaways,
  .stats-box {
    padding: 1rem;
  }
}
.resilience-section {
  padding: 3rem 0;
}

.image-container {
  margin: 2rem 0;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.intro-text {
  margin-bottom: 3rem;
}

.intro-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.models-section {
  margin: 3rem 0;
}

.model {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.model h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.model p {
  line-height: 1.6;
}

.footnotes {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.footnotes p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

sup {
  color: #3498db;
  font-weight: bold;
}

@media (max-width: 768px) {
  .model {
    padding: 1.5rem;
  }

  .intro-text {
    margin-bottom: 2rem;
  }
}

.key-insights {
  margin: 3rem 0;
}

.insights-intro {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.insight-box {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.insight-box .main-point {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.sub-points {
  list-style: none;
  padding-left: 0;
}

.sub-points li {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.point-label {
  color: #3498db;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .insight-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sub-points li {
    margin-bottom: 1rem;
  }
}
.capability-section {
  margin: 3rem 0;
}

.digitalization {
  margin: 2rem 0;
}

.google-program {
  margin: 3rem 0;
}

.google-program h4 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.key-learnings {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.key-learnings h5 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.key-learnings ol {
  padding-left: 2rem;
}

.key-learnings li {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.content-image-wrapper {
  margin: 2rem 0;
  text-align: center;
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .key-learnings {
    padding: 1.5rem;
  }

  .google-program h4 {
    font-size: 1.2rem;
  }
}
.microsoft-program {
  margin: 3rem 0;
}

.program-details {
  margin: 2rem 0;
}

.profile-box,
.location-box,
.details-box {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.profile-box h5,
.location-box h5,
.details-box h5 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.outcome-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stat-box {
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.stat-box h6 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.case-study {
  margin: 3rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.case-study blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #3498db;
  font-style: italic;
  color: #666;
}

.phase-two {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

@media (max-width: 768px) {
  .outcome-stats {
    grid-template-columns: 1fr;
  }

  .stat-box,
  .case-study {
    padding: 1.5rem;
  }
}
.mswipe-program {
  margin: 3rem 0;
}

.objectives {
  margin: 1.5rem 0;
}

.objectives ul {
  list-style: none;
  padding-left: 0;
}

.objectives li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.objectives li:before {
  content: "•";
  color: #3498db;
  position: absolute;
  left: 0;
}

.key-findings {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.skilling-section {
  margin: 4rem 0;
}

.challenges {
  margin: 2rem 0;
}

.challenges-text {
  margin-top: 2rem;
}

.challenges-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .key-findings {
    padding: 1.5rem;
  }

  .objectives li {
    padding-left: 1rem;
  }
}
.skilling-types {
  margin: 3rem 0;
}

.skilling-type {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.skilling-type h4 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.revive-difference {
  margin: 3rem 0;
}

.program-features {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.program-features h5 {
  color: #333;
  margin-bottom: 1.5rem;
}

.program-features ol {
  padding-left: 1.5rem;
}

.program-features li {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-features ul {
  margin-top: 1rem;
  padding-left: 2rem;
}

.program-features ul li {
  margin-bottom: 0.75rem;
}

.partners-section {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.ibm-program {
  margin-top: 3rem;
}

.ibm-program .program-details {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .skilling-type,
  .program-features,
  .partners-section {
    padding: 1.5rem;
  }

  .program-features ol {
    padding-left: 1.2rem;
  }
}
.conclusion {
  margin: 4rem 0;
}

.key-learnings {
  margin-top: 2rem;
}

.intro-text {
  margin-bottom: 3rem;
  line-height: 1.6;
}

.learnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.learning-card {
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
  transition: transform 0.2s ease;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.learning-card h4 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.learning-card p {
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .learnings-grid {
    grid-template-columns: 1fr;
  }

  .learning-card {
    padding: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .learnings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.future {
  margin: 4rem 0;
}

.alliances {
  margin: 3rem 0;
}

.alliance-card {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.alliance-card h4 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.achievements {
  margin-top: 1.5rem;
  list-style: none;
  padding-left: 0;
}

.achievements li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.achievements li:before {
  content: "•";
  color: #3498db;
  position: absolute;
  left: 0;
}

.mission {
  margin-top: 4rem;
}

.principles {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.principle-card {
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.principle-card h5 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .alliance-card,
  .principle-card {
    padding: 1.5rem;
  }

  .principles {
    grid-template-columns: 1fr;
  }
}
.future-extended {
  margin: 3rem 0;
}

.climate-approach {
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #2ecc71;
  margin-bottom: 3rem;
}

.additional-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.key-initiatives {
  margin-top: 1.5rem;
}

.key-initiatives h6 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.key-initiatives ul,
.collaboration-highlights ul {
  list-style: none;
  padding-left: 0;
}

.key-initiatives li,
.collaboration-highlights li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.key-initiatives li:before,
.collaboration-highlights li:before {
  content: "→";
  color: #3498db;
  position: absolute;
  left: 0;
}

.wohla-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.partnerships-intro {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .climate-approach {
    padding: 1.5rem;
  }

  .additional-principles {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .additional-principles {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partnerships-table {
  margin: 3rem 0;
  overflow-x: auto;
}

.partnerships-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.partnerships-table th {
  background-color: #3498db;
  color: white;
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}

.partnerships-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.entity-type {
  font-weight: 600;
  color: #333;
  background-color: #f8f8f8;
  min-width: 200px;
}

.partnerships-table ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.partnerships-table li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.partnerships-table li:last-child {
  margin-bottom: 0;
}

.partnerships-table strong {
  color: #2c3e50;
}

@media (max-width: 768px) {
  .partnerships-table {
    margin: 2rem -1.5rem;
  }

  .partnerships-table td,
  .partnerships-table th {
    padding: 1rem;
  }

  .entity-type {
    min-width: 150px;
  }
}
.final-principles {
  margin: 4rem 0;
}

.principle-card {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.principle-content {
  line-height: 1.6;
}

.methodology-box,
.indices-box,
.innovation-box,
.cg-schemes-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.methodology-box h6,
.indices-box h6,
.innovation-box h6,
.cg-schemes-box h6 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

.impact-indices {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.impact-indices li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.impact-indices li:before {
  content: "•";
  color: #3498db;
  position: absolute;
  left: 0;
}

.indices-note,
.partners-note {
  font-style: italic;
  color: #666;
  margin-top: 1rem;
}

.impact-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #e8f4f8;
  border-radius: 6px;
  border-left: 4px solid #3498db;
}

@media (max-width: 768px) {
  .principle-card {
    padding: 1.5rem;
  }

  .methodology-box,
  .indices-box,
  .innovation-box,
  .cg-schemes-box {
    padding: 1rem;
  }

  .impact-note {
    padding: 1rem;
  }
}
.technology {
  margin: 4rem 0;
}

.tech-intro {
  margin-bottom: 3rem;
  line-height: 1.6;
}

.design-principles {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
}

.design-principles h6 {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-align: center;
}

.principles-table {
  overflow-x: auto;
}

.principles-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.principles-table th {
  background-color: #3498db;
  color: white;
  padding: 1.5rem;
  text-align: left;
}

.principles-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.principle-name {
  font-weight: 600;
  color: #2c3e50;
  background-color: #f8f8f8;
  min-width: 200px;
}

@media (max-width: 768px) {
  .design-principles {
    padding: 1rem;
  }

  .principles-table {
    margin: 0 -1rem;
  }

  .principles-table td,
  .principles-table th {
    padding: 1rem;
  }

  .principle-name {
    min-width: 150px;
  }
}
.network-transition {
  margin: 4rem 0;
}

.transition-intro {
  margin-bottom: 3rem;
  line-height: 1.6;
}

.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.value-card {
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
  transition: transform 0.2s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.value-card h6 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.network-evolution {
  margin-top: 3rem;
}

.dpi-integration {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #e8f4f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.dpi-integration h6 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.microservices-note {
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .value-card {
    padding: 1.5rem;
  }

  .dpi-integration {
    padding: 1.5rem;
  }

  .microservices-note {
    padding: 1rem;
  }
}
.network-architecture {
  margin: 4rem 0;
  text-align: center;
}

.content-image {
  max-width: 100%;
  margin: 0 auto;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 1rem;
  color: #666;
  font-style: italic;
}

.sustainability {
  margin: 4rem 0;
}

.sustainability-content {
  line-height: 1.6;
}

.network-principle {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.example {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid #3498db;
}

.vision-statement {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #e8f4f8;
  border-radius: 8px;
  font-weight: 500;
}

.societal-thinking {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.call-to-action {
  margin-top: 3rem;
  text-align: center;
}

.cta-box {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #3498db;
  color: white;
  border-radius: 8px;
  text-align: center;
}

.cta-text {
  margin-bottom: 1.5rem !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  color: white !important;
  text-align: center !important;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: white;
  color: #3498db;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .network-principle,
  .vision-statement,
  .societal-thinking,
  .cta-box {
    padding: 1.5rem;
  }
}
.partners-speak {
  margin: 4rem 0;
  padding: 2rem;
  background-color: #f8f8f8;
}

.partners-speak h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.testimonial-card {
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.partner-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.partner-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.partner-details h4 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.1rem;
}

.position {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.organization {
  color: #3498db;
  font-size: 0.9rem;
  font-weight: 500;
}

blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid #3498db;
  font-style: italic;
  color: #555;
}

blockquote p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .partners-speak {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .partner-info img {
    width: 60px;
    height: 60px;
  }
}

/* Back to top button styles */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3498db;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#back-to-top svg {
    transition: transform 0.2s ease;
}

#back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-reveal.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation delays for consecutive elements */
section:nth-child(2n) .scroll-reveal {
    transition-delay: 0.2s;
}

section:nth-child(3n) .scroll-reveal {
    transition-delay: 0.3s;
}

/* Smooth scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

/* Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .scroll-reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Side Navigation Styles */
.side-nav {
    position: fixed;
    top: 75%;
    right: 7px;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.side-nav:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) translateX(-5px);
}

.nav-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-wrapper li {
    margin: 0.8rem 0;
}

.nav-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    white-space: nowrap;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(52, 152, 219, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 12px;
}

.nav-link:hover {
    color: #3498db;
    transform: translateX(-5px);
}

.nav-link:hover:before {
    width: 100%;
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #3498db, #2980b9);
    font-weight: 600;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Navigation Toggle Button */
.nav-toggle {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    top: 5px;
    right: 5px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1001;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block; /* Show on mobile */
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .side-nav {
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background: rgba(255, 255, 255, 0.98);
        padding: 5rem 1.5rem 1.5rem;
        transform: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .side-nav.active {
        right: 0;
    }
}

/* Ensure proper z-index stacking */
.side-nav {
    z-index: 1000;
}

.nav-toggle {
    z-index: 1001;
}

/* Adjust container margin for navigation */
@media (min-width: 769px) and (max-width: 1478px) {
    .container {
        margin-right: 280px;
    }
}

@media (max-width: 768px) {
    .container {
        margin-right: auto;
    }
}
