 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Cabin", sans-serif;
        }

        :root {
            --primary-green: rgb(110, 229, 80);
        }

        body {
            overflow-x: hidden;
            background-color: #f6f6f6;
        }

        /* Navigation */
        .navbar-custom {
            background-color: transparent;
            transition: background-color 0.3s ease-in-out;
        }

        .container {
    max-width: 100% !important;
}
        .navbar-darkened {
            background-color: rgba(0, 0, 0, 0.6);
        }

        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link:hover {
            color: var(--primary-green) !important;
        }

        .navbar-toggler {
            border: none;
            outline: none;
        }


        .navbar {
    background-color: white;
    height: 60px;
    color: black;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
}
        /* Main Content */
        .main-content {
            margin-top: 100px;
            padding: 20px 0;
        }

        /* Safety Section */
        .safety-section {
            width: 100%;
            line-height: 1.6;
            color: #000;
            padding: 2rem 1rem;
        }

        .safety-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .safety-section h1 {
            font-size: 2.2rem;
            color: #000;
            text-align: left;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .safety-section h2 {
            font-size: 1.6rem;
            color: var(--primary-green);
            margin-top: 30px;
            text-align: left;
            font-weight: 600;
        }

        .safety-section p {
            text-align: left;
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
        }

        .safety-section ul {
            list-style: none;
            padding: 0;
            display: block;
        }

        .safety-section ul > li {
            margin-bottom: 25px;
            text-align: left;
            padding-left: 20px;
            position: relative;
        }

        .safety-section ul > li:before {
            content: "•";
            color: var(--primary-green);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }

        .safety-section ul > li strong {
            font-size: 1.1rem;
            color: #000;
            display: block;
            margin-bottom: 8px;
        }

        .safety-section ul ul {
            margin-top: 10px;
            padding-left: 20px;
        }

        .safety-section ul ul li {
            list-style-type: disc;
            margin-bottom: 8px;
            padding-left: 5px;
        }

        .safety-section hr {
            width: 100%;
            border: none;
            height: 2px;
            background-color: #ddd;
            margin: 30px 0;
        }

        .safety-section a {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
        }

        .safety-section a:hover {
            text-decoration: underline;
        }

        .text-sub {
            margin-left: 0;
            list-style-type: disc;
        }

        /* Footer */
        .footer {
            background-color: black;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }

        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 30px;
        }

        .footer-logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-logo-container img {
            width: 60px;
            height: 60px;
        }

        .footer-icons-container {
            display: flex;
            align-items: center;
            margin: 20px 0;
            gap: 15px;
        }

        .footer-icons-container ion-icon {
            color: white;
            width: 25px;
            height: 25px;
            transition: color 0.3s ease;
        }

        .footer-icons-container ion-icon:hover {
            color: var(--primary-green);
        }

        .footer-sub-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            width: 100%;
        }

        .footer-column {
            flex: 1;
            min-width: 220px;
            max-width: 300px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-align: center;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            text-align: center;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            font-size: 0.9rem;
            font-weight: 500;
            display: block;
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--primary-green);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            color: #fff;
            width: 100%;
            font-size: 0.9rem;
        }

        /* Media Queries */
        /* Mobile First Approach */

        /* Extra small devices (phones, 320px and up) */
        @media (min-width: 320px) {
            .safety-section h1 {
                font-size: 1.8rem;
            }
            
            .safety-section h2 {
                font-size: 1.4rem;
            }
            
            .safety-container {
                padding: 20px;
            }
            
            .safety-section ul > li {
                padding-left: 25px;
            }
        }

        /* Small devices (landscape phones, 576px and up) */
        @media (min-width: 576px) {
            .safety-section h1 {
                font-size: 2rem;
            }
            
            .safety-section h2 {
                font-size: 1.5rem;
            }
            
            .safety-container {
                padding: 25px;
            }
        }

        /* Medium devices (tablets, 768px and up) */
        @media (min-width: 768px) {
            .main-content {
                margin-top: 120px;
            }
            
            .safety-section h1 {
                font-size: 2.2rem;
            }
            
            .safety-section h2 {
                font-size: 1.6rem;
            }
            
            .safety-container {
                padding: 30px;
            }
            
            .footer-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
            
            .footer-logo-container {
                align-items: flex-start;
            }
            
            .footer-icons-container {
                justify-content: flex-start;
            }
            
            .footer-column h3,
            .footer-column ul {
                text-align: left;
            }
        }

        /* Large devices (desktops, 992px and up) */
        @media (min-width: 992px) {
            .safety-section h1 {
                font-size: 2.5rem;
            }
            
            .safety-section h2 {
                font-size: 1.8rem;
            }
            
            .safety-container {
                padding: 40px;
            }
            
            .footer-sub-container {
                justify-content: space-between;
            }
        }

        /* Extra large devices (large desktops, 1200px and up) */
        @media (min-width: 1200px) {
            .safety-section h1 {
                font-size: 2.8rem;
            }
            
            .safety-section p {
                font-size: 1.1rem;
            }
            
            .safety-section ul > li strong {
                font-size: 1.2rem;
            }
        }

        /* Specific adjustments for very large screens */
        @media (min-width: 1600px) {
            .safety-container {
                max-width: 1400px;
            }
        }

        /* Adjustments for specific screen sizes */
        /* 1024 x 768 (typically iPad in portrait) */
        @media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
            .safety-section ul > li {
                margin-bottom: 20px;
            }
        }

        /* 1280 x 1024 */
        @media (min-width: 1280px) {
            .safety-section h1 {
                font-size: 3rem;
            }
        }

        /* 1920 x 1080 (Full HD) */
        @media (min-width: 1920px) {
            .safety-section h1 {
                font-size: 3.2rem;
            }
            
            .safety-section h2 {
                font-size: 2rem;
            }
            
            .safety-section p {
                font-size: 1.2rem;
            }
            
            .safety-section ul > li strong {
                font-size: 1.3rem;
            }
        }
   