.share-holder * {
            box-sizing: border-box;
        }

        .share-holder {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #212529;
            background-color: #fff;
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }

        /* CSS Variables */
        .share-holder {
            --primary-color: #003366;
            --secondary-color: #fe6601;
            --bs-card-border-color: rgba(0, 0, 0, 0.175);
            --bs-card-border-radius: 0.375rem;
        }

        /* Typography */
        .share-holder h4, .share-holder h5 {
            margin-top: 0;
            margin-bottom: 0.5rem;
            font-weight: 500;
            line-height: 1.2;
        }

        .share-holder h4 {
            font-size: 1.5rem;
        }

        .share-holder h5 {
            font-size: 1.25rem;
        }

        .share-holder p {
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .share-holder ul {
            padding-left: 2rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }
        
        .share-holder strong {
            font-weight: bolder;
            color: var(--primary-color);
        }

        /* Grid and Layout (Bootstrap Replacements) */
        .share-holder .container {
            width: 100%;
            padding-right: 0.75rem;
            padding-left: 0.75rem;
            margin-right: auto;
            margin-left: auto;
            margin-top: 3rem;
            margin-bottom: 3rem;
        }
        @media (min-width: 576px) { .share-holder .container { max-width: 540px; } }
        @media (min-width: 768px) { .share-holder .container { max-width: 720px; } }
        @media (min-width: 992px) { .share-holder .container { max-width: 960px; } }
        @media (min-width: 1200px) { .share-holder .container { max-width: 1140px; } }

        .share-holder .row {
            display: flex;
            flex-wrap: wrap;
            margin-top: -0.5rem;
            margin-right: -0.75rem;
            margin-left: -0.75rem;
        }

        .share-holder .justify-content-center {
            justify-content: center;
        }
        
        .share-holder .col-lg-10 {
            flex: 0 0 auto;
            width: 100%; /* Default for smaller screens */
        }

        @media (min-width: 992px) { /* 'lg' breakpoint */
            .share-holder .col-lg-10 {
                width: 83.33333333%;
            }
        }
        
        /* Card Component (Bootstrap Replacement) */
        .share-holder .card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
            word-wrap: break-word;
            background-color: #fff;
            background-clip: border-box;
            border: 1px solid var(--bs-card-border-color);
            border-radius: var(--bs-card-border-radius);
        }
        
        .share-holder .card.shadow-lg {
             box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
        }
        
        .share-holder .card.border-0 {
            border: 0 !important;
        }

        .share-holder .card-body {
            flex: 1 1 auto;
            padding: 3rem; /* Replaces p-5 */
        }
        
        /* Margin and Padding Utilities */
        .share-holder .mb-4 { margin-bottom: 1.5rem; }
        .share-holder .mb-2 { margin-bottom: 0.5rem; }
        .share-holder .mb-0 { margin-bottom: 0; }
        .share-holder .mt-4 { margin-top: 1.5rem; }

        /* Custom Styles from Original Page */
        .share-holder .header {
            background-color: var(--primary-color);
            color: white;
            padding: 2rem 0;
        }

        .share-holder .accent-text {
            color: var(--secondary-color);
        }

        .share-holder .company-name {
            color: var(--primary-color);
            font-weight: bold;
        }

        .share-holder .signature-section {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .share-holder .contact-info {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0, 51, 102, 0.1);
            border: none;
            position: relative;
            overflow: hidden;
        }

        .share-holder .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--secondary-color), #ff8533);
        }

        .share-holder .contact-info h5 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .share-holder .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .share-holder .contact-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .share-holder .contact-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-color), #004080);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .share-holder .contact-details {
            flex: 1;
            min-width: 0;
        }

        .share-holder .contact-label {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 0.25rem;
            font-weight: 500;
        }

        .share-holder .contact-value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 600;
            margin: 0;
            word-break: break-word;
        }
        
        .share-holder .alert { /* Custom alert style */
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 0.25rem;
        }

        .share-holder .alert-info {
            color: #0c5460;
            background-color: #e8f4f8; 
            border: 1px solid #bee5eb;
            border-left: 4px solid var(--secondary-color) !important;
        }

        .share-holder .meeting-details {
            background-color: #f0f8ff;
            border: 2px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }

        /* Responsive Media Queries */
        @media (max-width: 768px) {
            .share-holder .contact-info {
                padding: 1.5rem;
            }
            .share-holder .contact-item {
                padding: 0.875rem;
            }
            .share-holder .contact-icon {
                width: 40px;
                height: 40px;
                margin-right: 0.75rem;
                font-size: 1.1rem;
            }
            .share-holder .contact-value {
                font-size: 0.95rem;
            }
            .share-holder .meeting-details {
                padding: 1rem;
            }
            .share-holder .card-body {
                padding: 2rem 1.5rem !important;
            }
        }

        @media (max-width: 576px) {
            .share-holder .contact-info {
                padding: 1.25rem;
            }
            .share-holder .contact-item {
                padding: 0.75rem;
            }
            .share-holder .contact-icon {
                width: 35px;
                height: 35px;
                margin-right: 0.5rem;
                font-size: 1rem;
            }
            .share-holder .header {
                padding: 1.5rem 0;
            }
            .share-holder .header h1 {
                font-size: 1.5rem;
            }
            .share-holder .header h4 {
                font-size: 1.1rem;
            }
            .share-holder .card-body {
                padding: 1.5rem 1rem !important;
            }
        }