    :root {
      /* Transcend-style palette */
      --black: #000000;
      --black-soft: #111111;
      --gold: #c8a15a;
      --gold-dark: #b18a45;
      --hero-gold: #c8a15a;
      --cream: #f4efe6;
      --cream-soft: #eee2d0;

      --text-main: #111111;
      --text-hero: #111111;
      --text-muted: #333333;
      /* Darker for better contrast */

      --border-soft: #ddcdb5;
      --radius-lg: 24px;
      --radius-md: 18px;
      --shadow-soft: 0 20px 55px rgba(0, 0, 0, 0.24);

      --linkedin-blue: #0a66c2;
    }

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

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

    body {
      font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--black);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
    }

    /* --- PREMIUM SCROLLBAR --- */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: var(--black);
    }

    ::-webkit-scrollbar-thumb {
      background: #333;
      border-radius: 5px;
      border: 2px solid var(--black);
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--gold);
    }

    /* --- SELECTION --- */
    ::selection {
      background: var(--gold);
      color: #000;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px 64px;
    }

    @media (max-width: 768px) {
      .page {
        padding: 0 18px 40px;
      }
    }

    /* ---------------- NAVBAR ---------------- */

    .navbar-wrap {
      background: var(--black);
      color: #f7f7f7;
      border-bottom: 1px solid #111;
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(22px);
      background: rgba(0, 0, 0, 0.94);
    }

    .navbar {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: transparent;
      border: 1px solid #333;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
      overflow: hidden;
      padding: 3px;
    }

    .nav-logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .nav-logo-name {
      font-size: 17px;
      font-weight: 600;
    }

    .nav-logo-sub {
      font-size: 11px;
      opacity: 0.75;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      font-size: 15px;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 4px;
      opacity: 0.8;
      transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: #ffffff;
      transition: width 0.2s ease;
    }

    .nav-links a:hover {
      opacity: 1;
      transform: translateY(-1px);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:active {
      transform: translateY(0);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-nav-linkedin {
      border-radius: 999px;
      border: none;
      background: var(--linkedin-blue);
      color: #ffffff;
      font-size: 13px;
      padding: 8px 16px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
      box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
    }

    .btn-nav-linkedin-icon {
      font-weight: 700;
      font-size: 14px;
      background: #ffffff;
      color: var(--linkedin-blue);
      border-radius: 2px;
      padding: 0px 3px;
      line-height: 1.2;
    }

    .btn-nav-linkedin:hover {
      background: #004182;
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(10, 102, 194, 0.5);
    }

    .contact-icon {
      width: 20px;
      height: 20px;
      vertical-align: middle;
      margin-right: 8px;
      fill: currentColor;
    }

    .text-highlight {
      font-weight: 700;
      color: inherit;
    }

    .btn-nav-lang {
      border-radius: 999px;
      border: 1px solid #444;
      background: transparent;
      color: #f7f7f7;
      font-size: 13px;
      padding: 6px 10px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.15s ease;
    }

    .btn-nav-lang:hover {
      border-color: #f7f7f7;
      background: rgba(255, 255, 255, 0.1);
    }

    .btn-nav-gold {
      border-radius: 999px;
      border: none;
      background: var(--gold);
      color: #111;
      font-weight: 600;
      font-size: 14px;
      padding: 9px 20px;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    }

    .btn-nav-gold:hover {
      background: var(--gold-dark);
      transform: translateY(-1px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
    }

    @media (max-width: 880px) {
      .navbar {
        padding-inline: 18px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }
    }

    /* ---------------- HERO ---------------- */

    .hero-wrap {
      background: var(--hero-gold);
      padding: 56px 0 80px;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
      gap: 40px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .hero-image {
      border-radius: 34px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: #e4d3b0;
      transform-origin: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-image:hover {
      transform: translateY(-6px) scale(1.01) rotate(-0.4deg);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
    }

    .hero-copy {
      color: var(--text-hero);
    }

    .hero-eyebrow {
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }

    .hero-title {
      font-size: clamp(36px, 4vw + 18px, 56px);
      font-weight: 600;
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .hero-subtitle {
      font-size: 17px;
      max-width: 480px;
      color: #222222;
      /* Darker specific color for hero contrast */
      margin-bottom: 20px;
    }

    .hero-subtitle strong {
      color: #222;
      font-weight: 600;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 14px;
    }

    .btn-hero-main {
      border-radius: 999px;
      border: none;
      background: #111111;
      color: #fefefe;
      font-size: 15px;
      padding: 10px 22px;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
    }

    .btn-hero-main:hover {
      background: #000000;
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    }

    .btn-hero-main:active {
      transform: translateY(0);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .btn-hero-outline {
      border-radius: 999px;
      border: 1px solid #111;
      background: transparent;
      color: #111;
      font-size: 15px;
      padding: 10px 22px;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn-hero-outline:hover {
      background: #111;
      color: #fefefe;
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    }

    .btn-hero-outline:active {
      transform: translateY(0);
    }

    .hero-badge-row {
      margin-bottom: 12px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 5px 12px;
      background: rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(0, 0, 0, 0.13);
      font-size: 12px;
      color: #2b240f;
    }

    .hero-badge span.star {
      color: #e8b63b;
      font-size: 14px;
      margin-right: 2px;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 12px;
      color: #333;
    }

    .hero-tag {
      border-radius: 999px;
      border: 1px solid #b68d46;
      padding: 4px 10px;
      background: #e3c69280;
    }

    /* ---------------- ABOUT ---------------- */

    .about-wrap {
      background: var(--black);
      padding: 72px 0 80px;
      color: #f7f7f7;
    }

    .about {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
      gap: 40px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .about {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .about-photo {
      border-radius: 32px;
      overflow: hidden;
      background: #111111;
      box-shadow: var(--shadow-soft);
      max-width: 360px;
    }

    .about-photo img {
      width: 100%;
      display: block;
      height: auto;
    }

    .about-heading {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .about-copy p {
      font-size: 17px;
      color: #e5e5e5;
      margin-bottom: 12px;
    }

    .about-sign {
      margin-top: 16px;
      font-size: 15px;
    }

    .about-sign strong {
      display: block;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .about-logo {
      margin-top: 18px;
      max-width: 220px;
    }

    .about-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ---------------- GENERIC CREAM SECTIONS ---------------- */

    .section-cream-wrap {
      background: var(--cream);
      color: var(--text-main);
      padding: 72px 0;
      border-top: 1px solid var(--border-soft);
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-heading {
      margin-bottom: 32px;
    }

    .section-eyebrow {
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .section-subtitle {
        font-size: 17px;
        color: var(--text-muted);
        max-width: 520px;
    }

    /* ---------------- SERVICES ---------------- */

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    @media (max-width: 900px) {
        .services-grid {
            grid-template-columns: minmax(0, 1fr);
        }
    }

    .service-card {
        border-radius: 32px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: var(--shadow-soft);
        display: flex;
        flex-direction: column;
        min-height: 100%;
        transform: translateY(0);
        transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .service-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    }

    .service-body {
        padding: 22px 24px 20px;
    }

    .service-eyebrow {
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 4px;
    }

    .service-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .service-text {
        font-size: 16px;
        color: var(--text-muted);
        margin-bottom: 16px;
    }

    .btn-service {
        border-radius: 999px;
        border: none;
        background: var(--gold);
        color: #111;
        font-size: 14px;
        padding: 9px 18px;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn-service:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    }

    /* ---------------- PLANS ---------------- */

    .plans-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        margin-top: 12px;
    }

    @media (max-width: 960px) {
        .plans-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 720px) {
        .plans-grid {
            grid-template-columns: minmax(0, 1fr);
        }
    }

    .plan-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 20px 18px 18px;
        border: 1px solid #e3d6c2;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: 100%;
        /* Ensure full height for alignment */
        transform: translateY(0);
        transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .plan-card.highlight {
        border: 2px solid var(--gold);
        background: linear-gradient(to bottom, #ffffff, #fffbf2);
        box-shadow: 0 22px 50px rgba(200, 161, 90, 0.25);
    }

    .plan-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 55px rgba(0, 0, 0, 0.22);
        border-color: var(--gold-dark);
    }

    .plan-badge {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--gold-dark);
    }

    .plan-name {
        font-size: 18px;
        font-weight: 600;
    }

    .plan-price {
        font-size: 20px;
        font-weight: 600;
    }

    .plan-desc {
        font-size: 15px;
        color: var(--text-muted);
    }

    .plan-list {
        list-style: none;
        padding: 0;
        margin: 4px 0 10px;
        font-size: 14px;
        color: var(--text-muted);
    }

    .plan-list li {
        display: flex;
        gap: 6px;
        align-items: flex-start;
        margin-bottom: 4px;
    }

    .plan-list span.dot {
        width: 14px;
        height: 14px;
        border-radius: 999px;
        border: 1px solid #5b8f57;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #5b8f57;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .plan-cta {
        margin-top: auto;
        /* Push to bottom */
    }

    .plan-cta button {
        border-radius: 999px;
        border: 1px solid #d4c4a7;
        background: #f7efe2;
        color: #111;
        padding: 8px 14px;
        font-size: 14px;
        cursor: pointer;
        width: 100%;
        transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }

    .plan-card.highlight .plan-cta button {
        background: var(--gold);
        border-color: var(--gold-dark);
        color: #111;
    }

    .plan-cta button:hover {
        background: #eadcc7;
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    }

    /* ---------------- REVIEWS ---------------- */

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        margin-top: 20px;
    }

    @media (max-width: 960px) {
        .reviews-grid {
            grid-template-columns: minmax(0, 1fr);
        }
    }

    .review-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 32px 24px;
        border: 1px solid #e3d6c2;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
        font-size: 15px;
        color: var(--text-muted);
        transform: translateY(0);
        transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
        display: flex;
        flex-direction: column;
        min-height: 100%;
        align-items: center;
        text-align: center;
    }

    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
        border-color: var(--gold-dark);
    }

    .review-stars {
        color: var(--gold-dark);
        font-size: 18px;
        margin-bottom: 12px;
        letter-spacing: 2px;
    }

    .review-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 10px;
    }

    .review-text {
        font-size: 15px;
        color: var(--text-muted);
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .review-footer {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .review-avatar {
        width: 80px;
        height: 80px;
        border-radius: 999px;
        overflow: hidden;
        background: #f1f1f1;
        flex-shrink: 0;
        border: 3px solid #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .review-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .review-author {
        font-weight: 600;
        color: var(--text-main);
        font-size: 16px;
        margin-bottom: 2px;
    }

    .review-meta {
        font-size: 14px;
        color: var(--text-muted);
    }

    /* ---------------- FAQ ---------------- */

    .faq-grid {
        display: grid;
        gap: 12px;
        margin-top: 18px;
    }

    .faq-item {
        background: #fff;
        border-radius: 16px;
        padding: 14px 16px;
        border: 1px solid #e3d6c2;
        transform: translateY(0);
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }

    .faq-q {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .faq-a {
        font-size: 15px;
        color: var(--text-muted);
    }

    /* ---------------- CONTACT ---------------- */

    .contact-wrap {
        background: var(--black-soft);
        color: #f7f7f7;
        padding: 72px 0 80px;
        border-top: 1px solid #111;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: 36px;
    }

    @media (max-width: 880px) {
        .contact-grid {
            grid-template-columns: minmax(0, 1fr);
        }
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-heading h2 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .contact-heading p {
        font-size: 16px;
        color: #d0d0d0;
        max-width: 420px;
    }

    label {
        font-size: 14px;
        color: #d5d5d5;
    }

    .input {
        width: 100%;
        margin-top: 4px;
        border-radius: 999px;
        border: 1px solid #2c2c2c;
        padding: 9px 13px;
        background: #111111;
        color: #f7f7f7;
        font-size: 15px;
        outline: none;
        transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .input:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 1px rgba(211, 164, 90, 0.7);
        background: #090909;
    }

    textarea.input {
        border-radius: 18px;
        resize: vertical;
        min-height: 110px;
    }

    .btn-contact {
        border-radius: 999px;
        border: none;
        background: var(--gold);
        color: #111;
        font-weight: 600;
        font-size: 15px;
        padding: 10px 22px;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
    }

    .btn-contact:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.8);
    }

    .contact-note {
        font-size: 12px;
        color: #a3a3a3;
        margin-top: 6px;
    }

    .contact-alt p {
        font-size: 14px;
        color: #dddddd;
        margin-bottom: 8px;
    }

    .contact-alt ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 18px;
        font-size: 13px;
    }

    .contact-alt li {
        margin-bottom: 4px;
    }

    .contact-es {
        border-radius: 16px;
        border: 1px solid #2f2f2f;
        padding: 10px 12px;
        font-size: 13px;
        margin-top: 10px;
    }

    .contact-es-title {
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 4px;
    }

    /* ---------------- FOOTER ---------------- */

    footer {
        background: var(--black);
        color: #a1a1a1;
        border-top: 1px solid #111;
        padding: 18px 0 24px;
    }

    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 32px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        font-size: 12px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        border-radius: 999px;
        border: 1px solid #2f2f2f;
        font-size: 11px;
        color: #e5e5e5;
    }

    @media (max-width: 768px) {
        .navbar {
            padding-inline: 18px;
        }

        .footer-inner {
            padding-inline: 18px;
        }
    }

    /* ---------------- SCROLL REVEAL ---------------- */

    .reveal {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

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

    .reveal-delay-1 {
        transition-delay: 0.08s;
    }

    .reveal-delay-2 {
        transition-delay: 0.16s;
    }

    .reveal-delay-3 {
        transition-delay: 0.24s;
    }

    /* ---------------- MOBILE MENU ---------------- */

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: #f7f7f7;
        font-size: 24px;
        cursor: pointer;
        z-index: 101;
        padding: 4px;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100%;
        background: var(--black);
        z-index: 100;
        padding: 80px 32px;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 24px;
        border-left: 1px solid #222;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        font-size: 18px;
        font-weight: 500;
        color: #f7f7f7;
        border-bottom: 1px solid #222;
        padding-bottom: 12px;
    }

    @media (max-width: 880px) {
        .mobile-menu-btn {
            display: block;
        }
    }