* {
      box-sizing: border-box;
      }
      body {
      font-family: 'Georgia', 'Times New Roman', serif;
      line-height: 1.6;
      color: #2d2d2d;
      margin: 0;
      padding: 0;
      background-color: #fefefe;
      }
      .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      header {
      background: linear-gradient(135deg, #e6e2df 0%, #c5bcb1 100%);
      border-bottom: 3px solid #b0957b;
      position: relative;
      min-height: 80px;
      padding: 15px 0;
      }
      .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      min-height: 50px;
      }
      .logo-container {
      flex: 0 0 auto;
      z-index: 100;
      position: relative;
      background-color: rgba(255, 255, 255, 0.2);
      padding: 8px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(176, 149, 123, 0.15);
      }
      .logo-container img {
      height: 45px;
      width: auto;
      display: block;
      }
      .main-nav {
      flex: 1 1 auto;
      display: flex;
      justify-content: flex-end;
      }
      .nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
      align-items: center;
      }
      .nav-list li {
      margin: 0;
      }
      .nav-list a {
      color: #2d2d2d;
      text-decoration: none;
      font-size: clamp(0.9rem, 2.5vw, 1.1rem);
      font-weight: 500;
      padding: 12px 18px;
      border-radius: 6px;
      transition: all 0.2s ease;
      white-space: nowrap;
      border: 2px solid transparent;
      position: relative;
      }
      .nav-list a:hover,
      .nav-list a:focus {
      background-color: rgba(176, 149, 123, 0.2);
      color: #1a1a1a;
      border-color: #b0957b;
      outline: none;
      }
      .nav-list a:focus {
      box-shadow: 0 0 0 2px #b0957b;
      }
      footer {
      background: linear-gradient(135deg, #c5bcb1 0%, #b0957b 100%);
      color: #2d2d2d;
      padding: 40px 0 25px 0;
      margin-top: 50px;
      }
      .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 25px;
      }
      .footer-section h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #1a1a1a;
      border-bottom: 2px solid #e6e2df;
      padding-bottom: 8px;
      }
      .contact-info p {
      margin: 8px 0;
      font-size: 0.95rem;
      }
      .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      }
      .footer-links li {
      margin-bottom: 8px;
      }
      .footer-links a {
      color: #2d2d2d;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s ease;
      padding: 4px 8px;
      border-radius: 4px;
      }
      .footer-links a:hover,
      .footer-links a:focus {
      color: #1a1a1a;
      background-color: rgba(230, 226, 223, 0.3);
      outline: 2px solid #e6e2df;
      }
      .footer-logo {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
      background-color: rgba(255, 255, 255, 0.15);
      padding: 12px;
      border-radius: 8px;
      }
      .footer-logo img {
      height: 35px;
      width: auto;
      }
      .footer-logo span {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1a1a1a;
      }
      .copyright {
      text-align: center;
      border-top: 1px solid #e6e2df;
      padding-top: 20px;
      font-size: 0.9rem;
      color: #3a3a3a;
      }
      .cookie-consent {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #ffffff;
      border: 3px solid #b0957b;
      border-radius: 12px;
      padding: 25px;
      max-width: 420px;
      box-shadow: 0 8px 25px rgba(176, 149, 123, 0.3);
      z-index: 1000;
      font-size: 0.9rem;
      line-height: 1.5;
      display: none;
      }
      .cookie-consent.show {
      display: block;
      animation: slideIn 0.4s ease-out;
      }
      @keyframes slideIn {
      from {
      transform: translateX(100%);
      opacity: 0;
      }
      to {
      transform: translateX(0);
      opacity: 1;
      }
      }
      .cookie-consent p {
      margin: 0 0 15px 0;
      color: #2d2d2d;
      }
      .cookie-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 15px;
      }
      .cookie-btn {
      padding: 10px 18px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.2s ease;
      min-height: 44px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      }
      .cookie-btn.accept {
      background-color: #b0957b;
      color: white;
      text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
      }
      .cookie-btn.accept:hover,
      .cookie-btn.accept:focus {
      background-color: #9d8469;
      outline: 2px solid #2d2d2d;
      }
      .cookie-btn.reject {
      background-color: #e6e2df;
      color: #2d2d2d;
      border: 1px solid #c5bcb1;
      }
      .cookie-btn.reject:hover,
      .cookie-btn.reject:focus {
      background-color: #c5bcb1;
      outline: 2px solid #2d2d2d;
      }
      .cookie-policy-link {
      color: #b0957b;
      text-decoration: underline;
      font-weight: 500;
      }
      .cookie-policy-link:hover,
      .cookie-policy-link:focus {
      color: #9d8469;
      outline: 1px solid #b0957b;
      background-color: rgba(176, 149, 123, 0.1);
      padding: 2px 4px;
      border-radius: 3px;
      }
      @media (max-width: 768px) {
      .header-content {
      flex-direction: column;
      text-align: center;
      gap: 15px;
      }
      .main-nav {
      justify-content: center;
      width: 100%;
      }
      .nav-list {
      justify-content: center;
      gap: 15px;
      }
      .nav-list a {
      font-size: 0.9rem;
      padding: 10px 12px;
      }
      .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      }
      .cookie-consent {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      right: auto;
      bottom: auto;
      width: 85%;
      max-width: 400px;
      padding: 30px;
      font-size: 18px;
      line-height: 1.7;
      }
      .cookie-consent p {
      margin-bottom: 20px;
      }
      .cookie-buttons {
      flex-direction: column;
      gap: 15px;
      }
      .cookie-btn {
      min-height: 50px;
      font-size: 20px;
      padding: 15px 20px;
      }
      .cookie-policy-link {
      font-size: 18px;
      padding: 4px 8px;
      }
      }
      @media (max-width: 480px) {
      .nav-list {
      flex-direction: column;
      gap: 8px;
      width: 100%;
      }
      .nav-list a {
      width: 100%;
      text-align: center;
      padding: 12px;
      }
      .container {
      padding: 0 15px;
      }
      }
      h1, h2, h3, h4, h5, h6 {
      font-family: 'Georgia', serif;
      line-height: 1.3;
      }
      .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
      }
      [role="banner"] {
      position: relative;
      }
      [role="navigation"] ul {
      margin: 0;
      padding: 0;
      }
      [role="contentinfo"] {
      position: relative;
      }
      .success-framework-page {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      }
      .framework-hero-section {
      background: linear-gradient(135deg, #e6e2df 0%, #c5bcb1 100%);
      padding: 80px 0;
      position: relative;
      text-align: center;
      }
      .framework-hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('./pictures/jaZfp.jpg') center center/cover;
      opacity: 0.15;
      z-index: 1;
      }
      .hero-content-wrapper {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
      }
      .main-framework-title {
      font-size: 3.2em;
      color: #b0957b;
      margin-bottom: 25px;
      font-weight: 300;
      letter-spacing: -1px;
      }
      .framework-subtitle {
      font-size: 1.4em;
      color: #5a5a5a;
      margin-bottom: 40px;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
      }
      .success-principles-section {
      background: #ffffff;
      padding: 100px 0;
      position: relative;
      }
      .principles-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      }
      .principles-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
      }
      .principles-sidebar {
      position: sticky;
      top: 100px;
      }
      .section-number {
      font-size: 6em;
      color: #e6e2df;
      font-weight: 700;
      line-height: 0.8;
      margin-bottom: 20px;
      }
      .principles-section-title {
      font-size: 2.8em;
      color: #b0957b;
      margin-bottom: 30px;
      font-weight: 400;
      }
      .principles-intro-text {
      font-size: 1.2em;
      color: #666;
      line-height: 1.8;
      }
      .principles-content {
      display: flex;
      flex-direction: column;
      gap: 50px;
      }
      .principle-block {
      background: linear-gradient(45deg, #fafafa 0%, #f5f5f5 100%);
      border-radius: 20px;
      padding: 45px;
      border-left: 6px solid #b0957b;
      position: relative;
      transition: all 0.4s ease;
      }
      .principle-block:hover {
      transform: translateX(15px);
      box-shadow: -10px 20px 40px rgba(176, 149, 123, 0.15);
      }
      .principle-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #b0957b, #c5bcb1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      font-size: 1.8em;
      color: white;
      }
      .principle-title {
      font-size: 1.6em;
      color: #333;
      margin-bottom: 15px;
      font-weight: 500;
      }
      .principle-description {
      color: #555;
      font-size: 1.1em;
      line-height: 1.7;
      margin-bottom: 20px;
      }
      .principle-example {
      background: rgba(176, 149, 123, 0.08);
      padding: 20px;
      border-radius: 10px;
      font-style: italic;
      color: #666;
      border-left: 3px solid #c5bcb1;
      }
      .implementation-timeline-section {
      background: linear-gradient(180deg, #f8f6f4 0%, #ffffff 100%);
      padding: 120px 0;
      position: relative;
      }
      .timeline-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 30px;
      }
      .timeline-header {
      text-align: center;
      margin-bottom: 80px;
      }
      .timeline-title {
      font-size: 2.5em;
      color: #b0957b;
      margin-bottom: 20px;
      font-weight: 300;
      }
      .timeline-description {
      font-size: 1.3em;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
      }
      .timeline-wrapper {
      position: relative;
      padding-left: 80px;
      }
      .timeline-line {
      position: absolute;
      left: 30px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, #b0957b, #c5bcb1);
      }
      .timeline-phase {
      position: relative;
      margin-bottom: 60px;
      padding-bottom: 40px;
      }
      .phase-marker {
      position: absolute;
      left: -65px;
      top: 10px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #b0957b, #c5bcb1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 1.2em;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(176, 149, 123, 0.3);
      }
      .phase-content {
      background: white;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      border-top: 4px solid #e6e2df;
      }
      .phase-title {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 15px;
      font-weight: 500;
      }
      .phase-details {
      color: #555;
      font-size: 1.05em;
      line-height: 1.6;
      margin-bottom: 20px;
      }
      .phase-duration {
      background: #f0f0f0;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      color: #777;
      display: inline-block;
      }
      .results-showcase-section {
      background: #ffffff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      }
      .results-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 40px;
      }
      .results-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 70px;
      gap: 50px;
      }
      .results-title-area {
      flex: 1;
      }
      .results-main-title {
      font-size: 2.8em;
      color: #b0957b;
      margin-bottom: 25px;
      font-weight: 300;
      line-height: 1.2;
      }
      .results-subtitle {
      font-size: 1.2em;
      color: #666;
      line-height: 1.6;
      }
      .results-visual {
      width: 300px;
      height: 200px;
      background: url('./pictures/gFTb.jpg') center center/cover;
      border-radius: 20px;
      position: relative;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }
      .results-visual::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(176, 149, 123, 0.3), rgba(197, 188, 177, 0.2));
      border-radius: 20px;
      }
      .results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
      }
      .result-card {
      background: linear-gradient(145deg, #fafafa, #f0f0f0);
      padding: 40px;
      border-radius: 25px;
      position: relative;
      border: 1px solid #e6e2df;
      transition: all 0.3s ease;
      }
      .result-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(176, 149, 123, 0.15);
      }
      .result-metric {
      font-size: 3.5em;
      color: #b0957b;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 10px;
      }
      .result-label {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 15px;
      font-weight: 500;
      }
      .result-description {
      color: #666;
      line-height: 1.6;
      font-size: 0.95em;
      }
      .testimonial-highlight {
      background: linear-gradient(135deg, #b0957b, #c5bcb1);
      padding: 50px;
      border-radius: 30px;
      color: white;
      text-align: center;
      position: relative;
      margin-top: 40px;
      }
      .testimonial-quote {
      font-size: 1.4em;
      line-height: 1.5;
      margin-bottom: 30px;
      font-style: italic;
      }
      .testimonial-author-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      }
      .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: url('./pictures/bSWsGiYNzn.jpg') center center/cover;
      border: 3px solid rgba(255, 255, 255, 0.3);
      }
      .testimonial-info {
      text-align: left;
      }
      .testimonial-name {
      font-weight: 600;
      margin-bottom: 5px;
      }
      .testimonial-role {
      opacity: 0.8;
      font-size: 0.9em;
      }
      @media (max-width: 1024px) {
      .principles-grid {
      grid-template-columns: 1fr;
      gap: 50px;
      }
      .principles-sidebar {
      position: static;
      text-align: center;
      }
      .results-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      }
      .results-visual {
      width: 100%;
      max-width: 400px;
      }
      }
      @media (max-width: 768px) {
      .main-framework-title {
      font-size: 2.2em;
      }
      .framework-subtitle {
      font-size: 1.1em;
      padding: 0 20px;
      }
      .principles-container,
      .timeline-container,
      .results-container {
      padding: 0 20px;
      }
      .principle-block {
      padding: 30px;
      }
      .timeline-wrapper {
      padding-left: 0;
      padding-top: 40px;
      }
      .timeline-line {
      display: none;
      }
      .phase-marker {
      position: static;
      margin-bottom: 20px;
      margin-left: auto;
      margin-right: auto;
      }
      .results-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      }
      .result-card {
      padding: 30px;
      }
      .testimonial-highlight {
      padding: 30px;
      }
      .testimonial-author-wrapper {
      flex-direction: column;
      gap: 15px;
      }
      .testimonial-info {
      text-align: center;
      }
      }
      @media (max-width: 480px) {
      .framework-hero-section {
      padding: 50px 0;
      }
      .success-principles-section,
      .implementation-timeline-section,
      .results-showcase-section {
      padding: 60px 0;
      }
      .section-number {
      font-size: 4em;
      }
      .principles-section-title {
      font-size: 2em;
      }
      .result-metric {
      font-size: 2.8em;
      }
      .testimonial-quote {
      font-size: 1.2em;
      }
      }
      a.c1 {color: #2d2d2d;}