/* Start custom CSS for html, class: .elementor-element-bdf83cd */@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

        /* Reset default styles to avoid theme conflicts */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Rubik', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #ffffff;
        }
        .drug-policy-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        .drug-policy-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .drug-policy-header h1 {
            font-size: 3.2rem;
            font-weight: 700;
            color: #73a38c; /* Muted green for main heading */
            margin-bottom: 15px;
            text-transform: capitalize; /* Professional look */
            letter-spacing: 0.8px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .drug-policy-header h1::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #73a38c, #5b8775); /* Gradient line above */
            border-radius: 1px;
        }
        .drug-policy-header h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #73a38c, #5b8775); /* Gradient underline */
            border-radius: 2px;
        }
        .drug-policy-header h1:hover {
            text-shadow: 2px 2px 4px rgba(115, 163, 140, 0.4); /* Hover shadow */
        }
        .drug-policy-header p {
            font-size: 1.2rem;
            color: #666666;
            max-width: 800px;
            margin: 0 auto;
        }
        .drug-policy-section {
            margin-bottom: 35px;
            background-color: #ffffff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle card-like shadow */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .drug-policy-section:hover {
            transform: translateY(-5px); /* Lift effect on hover */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
        }
        .drug-policy-section h2 {
            font-size: 1.9rem;
            font-weight: 600;
            color: #73a38c; /* Muted green for headings */
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }
        .drug-policy-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #73a38c, #5b8775); /* Gradient underline */
            border-radius: 1px;
            transition: width 0.3s ease;
        }
        .drug-policy-section h2:hover::after {
            width: 70px; /* Expand underline on hover */
        }
        .drug-policy-section h2:hover {
            text-shadow: 1px 1px 2px rgba(115, 163, 140, 0.3); /* Hover shadow for heading */
        }
        .drug-policy-section p {
            font-size: 1rem;
            color: #333333;
            margin-bottom: 15px;
        }
        .drug-policy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
            list-style: none; /* Remove default bullet points */
            padding-left: 0;
        }
        .drug-policy-section ul li {
            font-size: 1rem;
            color: #333333;
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        .drug-policy-section ul li::before {
            content: "\2713"; /* Unicode for checkmark to ensure compatibility */
            position: absolute;
            left: 0;
            color: #73a38c;
            font-weight: bold;
            font-size: 1.2rem; /* Slightly larger for visibility */
            line-height: 1;
        }
        .drug-policy-contact {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
            border-left: 5px solid #73a38c; /* Accent border on left */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .drug-policy-contact h2 {
            font-size: 1.9rem;
            font-weight: 600;
            color: #73a38c;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .drug-policy-container {
                margin: 30px auto;
                padding: 0 15px;
            }
            .drug-policy-header h1 {
                font-size: 2.2rem;
            }
            .drug-policy-header p {
                font-size: 1rem;
            }
            .drug-policy-section {
                padding: 20px;
            }
            .drug-policy-section h2 {
                font-size: 1.6rem;
            }
            .drug-policy-contact {
                padding: 20px;
            }
        }/* End custom CSS */