
        :root {
            --navy: #0d2f5ed6;
            --navy-dark: #051b38f2;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #464fb7;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            padding: 150px 0 100px;
            color: var(--light-text);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:  linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            background-size: cover;
            background-position: center;
            opacity: 0.2;
        }
        
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        
        /* Enhanced Practices Section */
        .practices-section {
            padding: 100px 0;
            background: var(--light);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--navy);
            font-size: 2.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .practice-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
            position: relative;
            margin-bottom: 30px;
        }
        
        .practice-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .practice-card-header {
            height: 180px;
            position: relative;
            overflow: hidden;
        }
        
        .practice-card-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .practice-card:hover .practice-card-header img {
            transform: scale(1.05);
        }
        
        .practice-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(13, 47, 94, 0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .practice-card-overlay h4 {
            color: white;
            margin: 0;
            font-size: 1.4rem;
        }
        
        .practice-card-body {
            padding: 25px;
        }
        
        .practice-card-body p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .practice-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .practice-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            padding-left: 25px;
        }
        
        .practice-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: bold;
        }
        
        .practice-card-footer {
            display: flex;
            justify-content: center;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .button1 {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        
        .button1:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        /* Back to top */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        #back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        #back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .page-header h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .page-header {
                padding: 120px 0 80px;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .practices-section {
                padding: 80px 0;
            }
        }
        
        @media (max-width: 767.98px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            .page-header p {
                font-size: 1rem;
            }
            
            .practices-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .practice-card-header {
                height: 150px;
            }
        }
        
        @media (max-width: 575.98px) {
            .page-header {
                padding: 100px 0 60px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .practices-section {
                padding: 50px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .practice-card-body {
                padding: 20px;
            }
            
            #back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }
   