      :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%;
        }
      }
      .about-hero-section {
        background: linear-gradient(135deg, #d7d0cc 0%, #baa9a0 100%);
        padding: 80px 0;
        margin: 0;
        position: relative;
        overflow: hidden;
      }
      .about-hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("./media/82137.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: 1;
      }
      .about-hero-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        text-align: center;
      }
      .about-hero-title {
        font-size: 3.5rem;
        color: #2c2c2c;
        margin-bottom: 30px;
        font-weight: 700;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      .about-hero-subtitle {
        font-size: 1.4rem;
        color: #4a4a4a;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
      }
      .methodology-section {
        padding: 100px 0;
        background: #ffffff;
        margin: 0;
        position: relative;
      }
      .methodology-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
      }
      .methodology-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 80px;
      }
      .methodology-content {
        padding: 0;
      }
      .methodology-title {
        font-size: 2.8rem;
        color: #9d7c69;
        margin-bottom: 30px;
        font-weight: 600;
        line-height: 1.3;
      }
      .methodology-text {
        font-size: 1.1rem;
        color: #5a5a5a;
        line-height: 1.7;
        margin-bottom: 25px;
      }
      .methodology-highlights {
        list-style: none;
        padding: 0;
        margin: 30px 0;
      }
      .methodology-highlights li {
        padding: 12px 0;
        border-left: 4px solid #baa9a0;
        padding-left: 20px;
        margin-bottom: 15px;
        font-size: 1.05rem;
        color: #4a4a4a;
      }
      .methodology-image {
        width: 100%;
        height: 400px;
        background-image: url("./media/50123784.jpg");
        background-size: cover;
        background-position: center;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      }
      .innovation-process {
        padding: 100px 0;
        background: linear-gradient(45deg, #f8f6f4 0%, #f0ebe8 100%);
        margin: 0;
      }
      .innovation-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
      }
      .innovation-header {
        text-align: center;
        margin-bottom: 80px;
      }
      .innovation-header h2 {
        font-size: 2.6rem;
        color: #2c2c2c;
        margin-bottom: 25px;
        font-weight: 600;
      }
      .innovation-description {
        font-size: 1.2rem;
        color: #5a5a5a;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
      }
      .process-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        margin-top: 60px;
      }
      .process-step {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        text-align: center;
        position: relative;
        transition: transform 0.3s ease;
      }
      .process-step:hover {
        transform: translateY(-5px);
      }
      .step-number {
        width: 60px;
        height: 60px;
        background: #9d7c69;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 25px;
      }
      .step-title {
        font-size: 1.4rem;
        color: #2c2c2c;
        margin-bottom: 20px;
        font-weight: 600;
      }
      .step-description {
        font-size: 1rem;
        color: #6a6a6a;
        line-height: 1.6;
      }
      .competitive-advantage {
        padding: 100px 0;
        background: #ffffff;
        margin: 0;
        position: relative;
      }
      .advantage-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
      }
      .advantage-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .advantage-visual {
        width: 100%;
        height: 450px;
        background-image: url("./media/46327.jpg");
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
      }
      .advantage-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(157, 124, 105, 0.8) 0%,
          rgba(186, 169, 160, 0.6) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .advantage-stats {
        text-align: center;
        color: #ffffff;
      }
      .stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
      .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
      }
      .advantage-content {
        padding: 0;
      }
      .advantage-title {
        font-size: 2.5rem;
        color: #9d7c69;
        margin-bottom: 30px;
        font-weight: 600;
        line-height: 1.3;
      }
      .advantage-text {
        font-size: 1.1rem;
        color: #5a5a5a;
        line-height: 1.7;
        margin-bottom: 25px;
      }
      .advantage-features {
        margin-top: 40px;
      }
      .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
      }
      .feature-icon {
        width: 24px;
        height: 24px;
        background: #baa9a0;
        border-radius: 50%;
        margin-right: 15px;
        margin-top: 3px;
        flex-shrink: 0;
      }
      .feature-text {
        font-size: 1.05rem;
        color: #4a4a4a;
        line-height: 1.6;
      }
      .team-showcase {
        background: #f8f6f4;
        padding: 60px 0;
        margin-top: 50px;
      }
      .team-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 30px;
        text-align: center;
      }
      .team-member {
        display: inline-block;
        margin: 0 20px;
      }
      .member-photo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-image: url("./media/301964257.jpg");
        background-size: cover;
        background-position: center;
        margin: 0 auto 15px;
        border: 3px solid #baa9a0;
      }
      .member-name {
        font-size: 1.1rem;
        color: #2c2c2c;
        font-weight: 600;
        margin-bottom: 5px;
      }
      .member-role {
        font-size: 0.95rem;
        color: #6a6a6a;
      }
      @media (max-width: 768px) {
        .about-hero-section {
          padding: 60px 0;
        }
        .about-hero-content {
          padding: 0 20px;
        }
        .about-hero-title {
          font-size: 2.5rem;
          margin-bottom: 20px;
        }
        .about-hero-subtitle {
          font-size: 1.2rem;
          margin-bottom: 30px;
        }
        .methodology-section,
        .innovation-process,
        .competitive-advantage {
          padding: 60px 0;
        }
        .methodology-container,
        .innovation-container,
        .advantage-container {
          padding: 0 20px;
        }
        .methodology-grid,
        .advantage-layout {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .methodology-title,
        .advantage-title {
          font-size: 2.2rem;
        }
        .innovation-header h2 {
          font-size: 2.2rem;
        }
        .process-steps {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .methodology-image,
        .advantage-visual {
          height: 300px;
        }
        .team-member {
          margin: 0 10px;
        }
      }
      @media (max-width: 480px) {
        .about-hero-title {
          font-size: 2rem;
        }
        .methodology-title,
        .advantage-title {
          font-size: 1.8rem;
        }
        .innovation-header h2 {
          font-size: 1.8rem;
        }
        .process-step {
          padding: 30px 20px;
        }
        .stat-number {
          font-size: 2.5rem;
        }
      }