        :root {
            --primary: #2a7a70;
            --secondary: #2c3e50;
            --accent: #38b2ac;
            --light: #f8f9fa;
            --light-green: #f0fff4;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #444;
            line-height: 1.6;
            background-color: #fff;
        }
        
        .pharma-section {
            padding: 80px 0;
            position: relative;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .pharma-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        
        .pharma-img-container {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .pharma-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        
        .pharma-img-container:hover .pharma-img {
            transform: scale(1.03);
        }
        
        .img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(42, 122, 112, 0.1) 0%, rgba(56, 178, 172, 0.05) 100%);
            opacity: 0;
            transition: var(--transition);
        }
        
        .pharma-img-container:hover .img-overlay {
            opacity: 1;
        }
        
        .pharma-content {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: var(--light-green);
        }
        
        .pharma-header {
            margin-bottom: 25px;
        }
        
        .pharma-title {
            color: var(--secondary);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .pharma-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .pharma-description {
            color: #555;
            line-height: 1.7;
            font-size: 16px;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid var(--accent);
        }
        
        .expertise-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 15px;
            box-shadow: 0 4px 10px rgba(42, 122, 112, 0.2);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .pharma-row {
                flex-direction: column;
            }
            
            .pharma-img-container, .pharma-content {
                width: 100%;
            }
            
            .pharma-content {
                padding: 30px 20px;
            }
        }