
 :root {
            --purple-dark: #311B92;
            --purple-lavender: #B39DDB;
            --text-color: #212121;
            --bg-light: #F5F5F7;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            background-color: var(--bg-light);
            line-height: 1.6;
        }

        .compliance-banner {
            background-color: var(--purple-dark);
            color: #ffffff;
            text-align: center;
            padding: 12px 20px;
            font-size: 0.85rem;
            font-weight: bold;
            letter-spacing: 1px;
        }

        header {
            background: #ffffff;
            padding: 15px 20px;
            text-align: center;
            border-bottom: 1px solid #E0E0E0;
        }

        .logo-img {
            max-height: 60px;
            width: auto;
            display: block;
            margin: 0 auto;
        }

        /* Hero Banner Container */
        .hero-banner {
    width: 100%;
    height: 410px;
    position: relative;
    overflow: hidden;
    background: url('../images/ss.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
        .hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.24); /* #0000003D */
    background-image: url('https://thepurpleowldispensary.com/wp-content/uploads/2025/04/purple-owl-isolated-tree-vector-purple-4.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 30% auto;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
}

.hero-banner > * {
    position: relative;
    z-index: 2;
}

        .hero-content {
    position: relative;
        top: -30px;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-logo {
    width: 59px; /* adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.hero-content h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
}

        .main-container {
         max-width: 800px;
    margin: -120px auto 40px auto;
    position: relative;
    z-index: 10;
    padding: 0 20px;
        }

        .action-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .action-card p {
            font-size: 1.1rem;
            color: #424242;
          
        }

        /* Safe, Compliant Destination Button */
        .btn-redirect {
            display: inline-block;
            background-color: var(--purple-dark);
            color: #ffffff;
            text-decoration: none;
            padding: 16px 35px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(49, 27, 146, 0.2);
        }

        .btn-redirect:hover {
            background-color: #1A237E;
            transform: translateY(-1px);
            box-shadow: 0 6px 15px rgba(49, 27, 146, 0.3);
        }

        .info-footer {
            text-align: center;
            padding: 40px 20px;
            font-size: 0.85rem;
            color: #757575;
            background: #ffffff;
            border-top: 1px solid #E0E0E0;
            margin-top: 60px;
        }
        @media (max-width: 768px) {
    .hero-logo {
        width: 42px;
        height: auto;
    }
}
/* =========================
   Tablet View (1024px and below)
========================= */
@media screen and (max-width: 1024px) {
    .hero-banner {
        height: 360px;
    }

    .hero-banner::before {
        background-size: 35% auto;
    }

    .hero-content {
        top: -20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .main-container {
        max-width: 90%;
        margin: -100px auto 40px;
    }
}

/* =========================
   Tablet Portrait (768px and below)
========================= */
@media screen and (max-width: 768px) {
    .hero-banner {
        height: 320px;
    }

    .hero-banner::before {
        background-size: 40% auto;
    }

    .hero-logo {
        width: 42px;
        height: auto;
    }

    .hero-content {
        top: -10px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.2;
        padding: 0 15px;
    }

    .main-container {
        max-width: 95%;
        margin: -80px auto 30px;
        padding: 0 15px;
    }

    .action-card {
        padding: 18px;
    }

    .action-card p {
        font-size: 1rem;
    }

    .btn-redirect {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* =========================
   Mobile View (576px and below)
========================= */
@media screen and (max-width: 576px) {
    .compliance-banner {
        font-size: 12px;
        padding: 10px 15px;
    }

    header {
        padding: 12px 15px;
    }

    .logo-img {
        max-height: 50px;
    }

    .hero-banner {
        height: 280px;
    }

    .hero-banner::before {
        background-size: 45% auto;
        background-position: top right;
    }

    .hero-logo {
        width: 40px;
        margin-bottom: 8px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .main-container {
        margin: -65px auto 25px;
        padding: 0 12px;
    }

    .action-card {
        padding: 16px;
        border-radius: 10px;
    }

    .action-card p {
        font-size: 15px;
    }

    .btn-redirect {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 16px;
    }

    .info-footer {
        padding: 25px 15px;
        font-size: 12px;
    }
}

/* =========================
   Small Mobile (375px and below)
========================= */
@media screen and (max-width: 375px) {
    .hero-banner {
        height: 250px;
    }

    .hero-logo {
        width: 36px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .main-container {
        margin: -55px auto 20px;
    }

    .action-card {
        padding: 14px;
    }

    .btn-redirect {
        font-size: 15px;
        padding: 12px 18px;
    }
}
/* Mobile Fix */
@media screen and (max-width: 480px) {

    body{
        overflow-x:hidden;
    }

    .hero-banner{
        height: 250px;
        background-position:center center;
    }

    .hero-banner::before{
        background-size:37% auto;
    }

    .hero-content{
        top:0;
        padding:0 15px;
    }

    .hero-logo{
        width:36px;
        margin-bottom:8px;
    }

    .hero-content h1{
        font-size:20px;
        line-height:1.2;
        padding:0 10px;
    }

    .main-container{
        width:calc(100% - 20px);
        max-width:none;
        margin:-45px auto 20px;
        padding:0;
    }

    .action-card{
        padding:16px;
        border-radius:10px;
    }

    .action-card p{
        font-size:14px;
        line-height:1.6;
    }

    .btn-redirect{
        display:block;
        width:100%;
        padding:14px 16px;
        font-size:15px;
        box-sizing:border-box;
    }

    .logo-img{
        max-height:45px;
    }
}