:root {
      --bora-red: #c1282d;
      --bora-dark: #121212;
      --bora-soft: #fff7f7;
      --bora-grey: #5f6b7a;
    }

    * {
      font-family: "Montserrat", sans-serif;
    }

    body {
      color: var(--bora-dark);
      background: #ffffff;
    }

    .navbar {
      padding: 1rem 0;
      box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    }

    .brand-logo {
      max-height: 58px;
    }

    .hero-section {
      min-height: 92vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(193,40,45,0.96), rgba(0,0,0,0.92)),
        url("pharmacy-hero.jpg");
      background-size: cover;
      background-position: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      right: -120px;
      bottom: -100px;
    }

    .hero-title {
      font-size: clamp(2.2rem, 6vw, 4.2rem);
      font-weight: 900;
      line-height: 1.05;
      color: #fff;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.88);
      max-width: 720px;
      margin-top: 1.5rem;
    }

    .button.is-bora {
      background: var(--bora-red);
      color: #fff;
      border: none;
      font-weight: 700;
    }

    .button.is-bora:hover {
      background: #a91f24;
      color: #fff;
    }

    .button.is-outline-light {
      border: 2px solid #fff;
      color: #fff;
      background: transparent;
      font-weight: 700;
    }

    .button.is-outline-light:hover {
      background: #fff;
      color: var(--bora-red);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      color: var(--bora-grey);
      font-size: 1.08rem;
      max-width: 760px;
      margin: 0 auto 3rem;
    }

    .feature-card,
    .pricing-card,
    .why-card,
    .faq-card {
      border-radius: 22px;
      border: 1px solid #eee;
      box-shadow: 0 12px 35px rgba(0,0,0,0.06);
      height: 100%;
      transition: all 0.25s ease;
    }

    .feature-card:hover,
    .pricing-card:hover,
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 45px rgba(193,40,45,0.13);
    }

    .icon-bubble {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: var(--bora-soft);
      color: var(--bora-red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      margin-bottom: 1.25rem;
    }

    .soft-section {
      background: linear-gradient(180deg, #fff7f7, #ffffff);
    }

    .dark-section {
      background: #111;
      color: #fff;
    }

    .dark-section .section-subtitle {
      color: rgba(255,255,255,0.75);
    }

    .pricing-card.featured {
      border: 2px solid var(--bora-red);
      transform: scale(1.03);
    }

    .price {
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--bora-red);
    }

    .check-list li {
      margin-bottom: 0.85rem;
      color: #485260;
    }

    .check-list i {
      color: var(--bora-red);
      margin-right: 0.5rem;
    }

    .cta-section {
      background: linear-gradient(135deg, var(--bora-red), #111);
      color: #fff;
      border-radius: 34px;
      padding: 4rem 2rem;
      overflow: hidden;
    }

    .footer {
      background: #0d0d0d;
      color: rgba(255,255,255,0.75);
      padding: 3rem 1.5rem;
    }

    .footer a {
      color: #fff;
    }

    .tag.is-bora {
      background: rgba(193,40,45,0.12);
      color: var(--bora-red);
      font-weight: 700;
    }

    @media (max-width: 768px) {
      .navbar-menu {
        background: #fff;
      }

      .hero-section {
        text-align: center;
        padding-top: 5rem;
        padding-bottom: 5rem;
      }

      .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
      }

      .pricing-card.featured {
        transform: none;
      }
    }