      :root {
        --primary-color: #9d7c69;
        --secondary-color: #baa9a0;
        --tertiary-color: #d7d0cc;
        --text-primary: #2c2c2c;
        --text-secondary: #6b6b6b;
        --background-light: #fafafa;
        --shadow-subtle: 0 2px 12px rgba(157, 124, 105, 0.1);
        --shadow-medium: 0 4px 20px rgba(157, 124, 105, 0.15);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, sans-serif;
        line-height: 1.6;
        color: var(--text-primary);
        background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
        min-height: 100vh;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      header {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.95) 0%,
          rgba(250, 250, 250, 0.9) 100%
        );
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(157, 124, 105, 0.1);
        position: relative;
        z-index: 1000;
        min-height: 80px;
        box-shadow: var(--shadow-subtle);
      }
      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        min-height: 80px;
        position: relative;
      }
      .logo-container {
        flex: 0 0 auto;
        z-index: 1001;
        position: relative;
      }
      .logo-container img {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(157, 124, 105, 0.2));
        transition: var(--transition);
      }
      .logo-container:hover img {
        filter: drop-shadow(0 4px 8px rgba(157, 124, 105, 0.3));
        transform: translateY(-1px);
      }
      .nav-container {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        z-index: 999;
      }
      .main-nav {
        display: flex;
        align-items: center;
        gap: clamp(1rem, 2vw, 2rem);
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      .main-nav a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        font-size: clamp(0.9rem, 1.5vw, 1rem);
        padding: 10px 16px;
        border-radius: 8px;
        transition: var(--transition);
        position: relative;
        white-space: nowrap;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        outline: 1px solid transparent;
      }
      .main-nav a::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--primary-color),
          var(--secondary-color)
        );
        transition: var(--transition);
        transform: translateX(-50%);
      }
      .main-nav a:hover {
        color: var(--primary-color);
        background: rgba(157, 124, 105, 0.05);
        transform: translateY(-1px);
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
        outline: 1px solid rgba(157, 124, 105, 0.1);
      }
      .main-nav a:hover::before {
        width: 100%;
      }
      footer {
        background: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          #8b6b5a 100%
        );
        color: white;
        margin-top: auto;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v20h20z'/%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.1;
        z-index: 1;
      }
      .footer-content {
        position: relative;
        z-index: 2;
        padding: 60px 0 30px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-section h3 {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
      }
      .footer-section p,
      .footer-section a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        line-height: 1.7;
        transition: var(--transition);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.1);
      }
      .footer-section a:hover {
        color: white;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.2);
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-links a {
        display: inline-block;
        padding: 8px 0;
        border-bottom: 1px solid transparent;
        transition: var(--transition);
      }
      .footer-links a:hover {
        border-bottom-color: rgba(255, 255, 255, 0.3);
        padding-left: 5px;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 25px;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.1);
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 8px 0;
      }
      .contact-item::before {
        content: "●";
        color: var(--tertiary-color);
        font-size: 0.8rem;
        margin-top: 4px;
        flex-shrink: 0;
      }
      .cookie-consent {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(
          135deg,
          var(--primary-color) 0%,
          #8b6b5a 100%
        );
        color: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: var(--shadow-medium);
        max-width: 350px;
        z-index: 10000;
        transform: translateY(100px);
        opacity: 0;
        transition: var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      .cookie-consent.show {
        transform: translateY(0);
        opacity: 1;
      }
      .cookie-consent p {
        margin-bottom: 15px;
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.1);
      }
      .cookie-buttons {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
      }
      .cookie-btn {
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 500;
        transition: var(--transition);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
      }
      .cookie-btn.accept {
        background: white;
        color: var(--primary-color);
        border: 1px solid rgba(255, 255, 255, 0.9);
      }
      .cookie-btn.accept:hover {
        background: var(--tertiary-color);
        transform: translateY(-1px);
      }
      .cookie-btn.decline {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.1);
      }
      .cookie-btn.decline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
      }
      @media (max-width: 768px) {
        .header-content {
          flex-direction: column;
          gap: 15px;
          padding: 20px 0;
        }
        .nav-container {
          justify-content: center;
        }
        .main-nav {
          justify-content: center;
          gap: 1rem;
        }
        .main-nav a {
          font-size: 0.9rem;
          padding: 8px 12px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .cookie-consent {
          bottom: 10px;
          right: 10px;
          left: 10px;
          max-width: none;
        }
      }
      @media (max-width: 480px) {
        .main-nav {
          flex-direction: column;
          gap: 8px;
        }
        .main-nav a {
          padding: 10px 20px;
          text-align: center;
          width: 100%;
        }
      }
      .learning-tips-page {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        margin: 0;
        padding: 0;
      }
      .custom-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
      }
      .hero-section-tips {
        background: linear-gradient(135deg, #9d7c69 0%, #baa9a0 100%);
        color: white;
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .hero-section-tips::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("./media/950182.jpg") center/cover;
        opacity: 0.15;
        z-index: 1;
      }
      .hero-content-wrapper {
        position: relative;
        z-index: 2;
      }
      .hero-title-main {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }
      .hero-subtitle-text {
        font-size: 1.3rem;
        margin-bottom: 30px;
        opacity: 0.95;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
      .quick-wins-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        padding: 80px 0;
        max-width: 1200px;
        margin: 0 auto;
      }
      .win-card-container {
        background: white;
        border-radius: 12px;
        padding: 35px;
        box-shadow: 0 8px 25px rgba(157, 124, 105, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(215, 208, 204, 0.3);
        position: relative;
        overflow: hidden;
      }
      .win-card-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(157, 124, 105, 0.25);
      }
      .win-card-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #9d7c69, #baa9a0);
      }
      .card-icon-wrapper {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #9d7c69, #baa9a0);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        position: relative;
      }
      .card-icon-wrapper::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        background: white;
        border-radius: 50%;
      }
      .card-title-heading {
        font-size: 1.8rem;
        color: #9d7c69;
        margin-bottom: 15px;
        font-weight: 600;
      }
      .card-description-text {
        color: #666;
        margin-bottom: 25px;
        font-size: 1.05rem;
      }
      .quick-tips-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .quick-tips-list li {
        padding: 8px 0;
        position: relative;
        padding-left: 25px;
        color: #555;
      }
      .quick-tips-list li::before {
        content: "";
        position: absolute;
        left: 0;
        color: #9d7c69;
        font-weight: bold;
      }
      .time-indicator {
        display: inline-block;
        background: linear-gradient(135deg, #9d7c69, #baa9a0);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 20px;
      }
      .advanced-strategies-section {
        background: #f8f7f6;
        padding: 80px 0;
        position: relative;
      }
      .section-header-wrapper {
        text-align: center;
        margin-bottom: 60px;
      }
      .section-main-title {
        font-size: 2.5rem;
        color: #9d7c69;
        margin-bottom: 20px;
        font-weight: 700;
      }
      .section-subtitle-desc {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
      }
      .strategy-blocks-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }
      .strategy-block-item {
        background: white;
        padding: 30px;
        border-radius: 8px;
        border-left: 4px solid #9d7c69;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      }
      .strategy-block-title {
        font-size: 1.4rem;
        color: #9d7c69;
        margin-bottom: 15px;
        font-weight: 600;
      }
      .strategy-block-content {
        color: #666;
        line-height: 1.7;
      }
      .implementation-showcase {
        padding: 80px 0;
        background: linear-gradient(
          135deg,
          #9d7c69 0%,
          #baa9a0 50%,
          #d7d0cc 100%
        );
        position: relative;
        overflow: hidden;
      }
      .implementation-showcase::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("./media/043296.jpg") center/cover;
        opacity: 0.1;
        z-index: 1;
      }
      .implementation-content-wrapper {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .implementation-text-side {
        color: white;
      }
      .implementation-main-heading {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 25px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }
      .implementation-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.95;
        line-height: 1.8;
      }
      .feature-highlights-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .feature-highlights-list li {
        padding: 12px 0;
        position: relative;
        padding-left: 30px;
        font-size: 1.1rem;
        opacity: 0.9;
      }
      .feature-highlights-list li::before {
        content: "→";
        position: absolute;
        left: 0;
        color: #d7d0cc;
        font-weight: bold;
        font-size: 1.2rem;
      }
      .implementation-visual-side {
        background: url("./media/53094.jpg") center/cover;
        border-radius: 12px;
        min-height: 400px;
        position: relative;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      }
      .implementation-visual-side::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          rgba(157, 124, 105, 0.3),
          rgba(215, 208, 204, 0.3)
        );
        border-radius: 12px;
      }
      .expert-testimonial-wrapper {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(157, 124, 105, 0.15);
        margin-top: 60px;
        display: flex;
        align-items: center;
        gap: 30px;
      }
      .expert-photo-container {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: url("./media/24165703.jpg") center/cover;
        flex-shrink: 0;
        border: 3px solid #d7d0cc;
      }
      .testimonial-content-area {
        flex: 1;
      }
      .testimonial-quote-text {
        font-size: 1.1rem;
        color: #555;
        font-style: italic;
        margin-bottom: 15px;
        line-height: 1.7;
      }
      .expert-name-title {
        font-weight: 600;
        color: #9d7c69;
        margin-bottom: 5px;
      }
      .expert-credentials {
        color: #888;
        font-size: 0.95rem;
      }
      .cta-section-wrapper {
        text-align: center;
        padding: 60px 0;
        background: #f8f7f6;
      }
      .cta-button-primary {
        display: inline-block;
        background: linear-gradient(135deg, #9d7c69, #baa9a0);
        color: white;
        padding: 18px 35px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(157, 124, 105, 0.3);
      }
      .cta-button-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(157, 124, 105, 0.4);
        color: white;
        text-decoration: none;
      }
      @media (max-width: 768px) {
        .custom-container {
          padding: 0 16px;
        }
        .hero-title-main {
          font-size: 2.2rem;
        }
        .hero-subtitle-text {
          font-size: 1.1rem;
        }
        .quick-wins-grid {
          grid-template-columns: 1fr;
          gap: 30px;
          padding: 60px 0;
        }
        .win-card-container {
          padding: 25px;
        }
        .section-main-title {
          font-size: 2rem;
        }
        .implementation-content-wrapper {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .implementation-main-heading {
          font-size: 2.2rem;
        }
        .expert-testimonial-wrapper {
          flex-direction: column;
          text-align: center;
        }
        .strategy-blocks-grid {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 480px) {
        .hero-section-tips {
          padding: 60px 0;
        }
        .hero-title-main {
          font-size: 1.8rem;
        }
        .win-card-container {
          padding: 20px;
        }
        .card-title-heading {
          font-size: 1.5rem;
        }
        .implementation-showcase {
          padding: 60px 0;
        }
        .implementation-main-heading {
          font-size: 1.9rem;
        }
      }