     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #e5f2e4 0%, #c5e1c3 100%);
        min-height: 100vh;
      }
      header {
        background: linear-gradient(135deg, #a1ca9e 0%, #c5e1c3 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        min-height: 85px;
        position: relative;
        overflow: hidden;
      }
      header::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }
      .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 10;
      }
      .logo-container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        z-index: 20;
        position: relative;
      }
      .logo {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        transition: transform 0.3s ease;
      }
      .logo:hover {
        transform: scale(1.05);
      }
      .nav-container {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        z-index: 15;
      }
      .main-nav {
        display: flex;
        list-style: none;
        gap: clamp(1rem, 2vw, 2rem);
        margin: 0;
        padding: 0;
      }
      .main-nav li {
        position: relative;
      }
      .main-nav a {
        color: #2d5a2b;
        text-decoration: none;
        font-weight: 500;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        padding: 8px 16px;
        border-radius: 25px;
        transition: all 0.3s ease;
        position: relative;
        white-space: nowrap;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        display: block;
      }
      .main-nav a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      .main-nav a:hover::before {
        opacity: 1;
      }
      .main-nav a:hover {
        color: #1a3d19;
        transform: translateY(-2px);
      }
      @media (max-width: 768px) {
        .header-container {
          flex-direction: column;
          height: auto;
          padding: 15px 20px;
        }
        .logo-container {
          margin-bottom: 10px;
        }
        .nav-container {
          width: 100%;
          justify-content: center;
        }
        .main-nav {
          flex-wrap: wrap;
          justify-content: center;
          gap: 0.5rem;
        }
        .main-nav a {
          font-size: 0.85rem;
          padding: 6px 12px;
        }
      }
      footer {
        background: linear-gradient(135deg, #2d5a2b 0%, #3d6b3a 100%);
        color: #e5f2e4;
        padding: 50px 0 30px;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #a1ca9e, #c5e1c3, #a1ca9e);
      }
      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 5;
      }
      .footer-section h3 {
        color: #a1ca9e;
        margin-bottom: 20px;
        font-size: 1.2rem;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section p,
      .footer-section a {
        color: #e5f2e4;
        text-decoration: none;
        line-height: 1.8;
        margin-bottom: 8px;
        transition: color 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section a:hover {
        color: #c5e1c3;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(161, 202, 158, 0.3);
        text-align: center;
        color: #c5e1c3;
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-consent {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(45, 90, 43, 0.95);
        color: #e5f2e4;
        padding: 20px;
        border-radius: 10px;
        display: none;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
      }
      .cookie-consent.show {
        display: block;
      }
      .cookie-consent p {
        margin-bottom: 15px;
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-consent button {
        background: #a1ca9e;
        color: #2d5a2b;
        border: none;
        padding: 8px 16px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 500;
        margin-right: 10px;
        transition: background 0.3s ease;
      }
      .cookie-consent button:hover {
        background: #c5e1c3;
      }
      @media (max-width: 600px) {
        .footer-container {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .cookie-consent {
          left: 10px;
          right: 10px;
          bottom: 10px;
        }
      }
      .methodology-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        background: linear-gradient(135deg, #e5f2e4 0%, #c5e1c3 100%);
        min-height: 100vh;
      }
      .methodology-hero {
        background: linear-gradient(45deg, #a1ca9e, #c5e1c3);
        padding: 80px 0;
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        overflow: hidden;
      }
      .methodology-hero::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        animation: float 8s ease-in-out infinite;
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0px) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(180deg);
        }
      }
      .methodology-hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 25px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 2;
      }
      .methodology-hero-subtitle {
        font-size: 1.4rem;
        color: #34495e;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
        position: relative;
        z-index: 2;
      }
      .practical-sections {
        display: grid;
        grid-template-columns: 1fr;
        gap: 80px;
        margin-bottom: 80px;
      }
      .case-study-section {
        background: white;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 15px 35px rgba(161, 202, 158, 0.15);
        position: relative;
        overflow: hidden;
        transform: translateY(20px);
        transition: all 0.4s ease;
      }
      .case-study-section:hover {
        transform: translateY(0);
        box-shadow: 0 25px 50px rgba(161, 202, 158, 0.25);
      }
      .case-study-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #a1ca9e, #c5e1c3, #a1ca9e);
      }
      .case-study-header {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        gap: 25px;
      }
      .case-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #a1ca9e, #c5e1c3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        font-weight: bold;
        box-shadow: 0 10px 25px rgba(161, 202, 158, 0.3);
      }
      .case-study-title {
        font-size: 2.2rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0;
      }
      .implementation-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }
      .implementation-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        border-left: 4px solid #a1ca9e;
        transition: all 0.3s ease;
      }
      .implementation-card:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 25px rgba(161, 202, 158, 0.2);
      }
      .implementation-card h4 {
        color: #a1ca9e;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
      }
      .implementation-card p {
        color: #5a6c7d;
        line-height: 1.6;
        margin: 0;
      }
      .results-showcase {
        background: linear-gradient(135deg, #a1ca9e, #c5e1c3);
        padding: 35px;
        border-radius: 15px;
        margin-top: 30px;
      }
      .results-showcase h4 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
      }
      .results-metrics {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
      }
      .metric-item {
        background: rgba(255, 255, 255, 0.2);
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        color: white;
      }
      .metric-value {
        font-size: 2rem;
        font-weight: bold;
        display: block;
        margin-bottom: 8px;
      }
      .metric-label {
        font-size: 0.9rem;
        opacity: 0.9;
      }
      .visual-section {
        background: url("./image_pool/pic-9.jpg") center/cover;
        min-height: 400px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        margin: 60px 0;
      }
      .visual-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          rgba(161, 202, 158, 0.8),
          rgba(197, 225, 195, 0.8)
        );
      }
      .visual-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        width: 90%;
        max-width: 600px;
      }
      .visual-content h3 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 25px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
      .visual-content p {
        color: white;
        font-size: 1.2rem;
        line-height: 1.6;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
      }
      .adaptation-framework {
        background: url("./image_pool/pic-10.jpg") center/cover;
        min-height: 500px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        margin: 60px 0;
      }
      .adaptation-framework::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(44, 62, 80, 0.9),
          rgba(161, 202, 158, 0.7)
        );
      }
      .adaptation-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 2;
      }
      .adaptation-title {
        color: white;
        font-size: 2.8rem;
        margin-bottom: 30px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
      .adaptation-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }
      .adaptation-step {
        background: rgba(255, 255, 255, 0.15);
        padding: 30px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
      }
      .adaptation-step h4 {
        color: #e5f2e4;
        font-size: 1.4rem;
        margin-bottom: 15px;
      }
      .adaptation-step p {
        color: white;
        line-height: 1.6;
        margin: 0;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
      }
      .expert-insights {
        background: white;
        border-radius: 20px;
        padding: 50px;
        margin: 60px 0;
        box-shadow: 0 15px 35px rgba(161, 202, 158, 0.1);
      }
      .expert-profiles {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }
      .expert-profile {
        display: flex;
        align-items: center;
        gap: 25px;
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
      }
      .expert-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #a1ca9e;
      }
      .expert-info h4 {
        color: #2c3e50;
        font-size: 1.3rem;
        margin-bottom: 8px;
      }
      .expert-info p {
        color: #5a6c7d;
        margin: 0;
        font-size: 0.95rem;
      }
      .insights-content {
        background: linear-gradient(135deg, #e5f2e4, #c5e1c3);
        padding: 40px;
        border-radius: 15px;
        text-align: center;
      }
      .insights-content h3 {
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 25px;
      }
      .insights-content p {
        color: #34495e;
        font-size: 1.1rem;
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto;
      }
      @media (max-width: 768px) {
        .methodology-container {
          padding: 0 15px;
        }
        .methodology-hero {
          padding: 60px 0;
          margin-bottom: 40px;
        }
        .methodology-hero-title {
          font-size: 2.5rem;
        }
        .methodology-hero-subtitle {
          font-size: 1.2rem;
        }
        .practical-sections {
          gap: 50px;
        }
        .case-study-section {
          padding: 30px 20px;
        }
        .case-study-header {
          flex-direction: column;
          text-align: center;
          gap: 20px;
        }
        .case-study-title {
          font-size: 1.8rem;
        }
        .implementation-grid {
          grid-template-columns: 1fr;
          gap: 25px;
        }
        .results-metrics {
          grid-template-columns: 1fr;
        }
        .visual-section {
          min-height: 300px;
          margin: 40px 0;
        }
        .visual-content h3 {
          font-size: 2rem;
        }
        .adaptation-framework {
          min-height: 400px;
        }
        .adaptation-content {
          padding: 40px 20px;
        }
        .adaptation-title {
          font-size: 2.2rem;
        }
        .adaptation-steps {
          grid-template-columns: 1fr;
        }
        .expert-profiles {
          grid-template-columns: 1fr;
        }
        .expert-profile {
          flex-direction: column;
          text-align: center;
        }
        .expert-insights {
          padding: 30px 20px;
        }
      }