

        /* General Details Page Specific Styles */
        .general-details-page {
            background: linear-gradient(135deg, rgba(47, 49, 147, 0.03) 0%, rgba(245, 130, 32, 0.03) 100%);
            min-height: 100vh;
        }

        .details-hero {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin-bottom: 60px;
        }

        .details-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            filter: brightness(0.8);
        }

        .details-hero-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            z-index: 2;
            background: linear-gradient(135deg, rgba(47, 49, 147, 0.7) 0%, rgba(26, 28, 102, 0.7) 100%);
        }

        .details-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .details-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        .details-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .details-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .details-content {
            padding: 60px 0;
        }

        .details-image-wrapper {
            position: relative;
            margin-bottom: 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

            .details-image-wrapper:hover {
                transform: translateY(-5px);
            }

        .details-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .details-image-wrapper:hover .details-image {
            transform: scale(1.05);
        }

        .details-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }

            .details-description h2 {
                color: #2f3193;
                margin-top: 2.5rem;
                margin-bottom: 1.5rem;
                font-size: 2rem;
                font-weight: 600;
                border-bottom: 2px solid #f58220;
                padding-bottom: 0.5rem;
            }

            .details-description h3 {
                color: #2f3193;
                margin-top: 2rem;
                margin-bottom: 1rem;
                font-size: 1.5rem;
                font-weight: 600;
            }

            .details-description p {
                margin-bottom: 1.5rem;
            }

            .details-description ul, .details-description ol {
                margin-bottom: 1.5rem;
                padding-left: 2rem;
            }

            .details-description li {
                margin-bottom: 0.5rem;
            }

            .details-description a {
                color: #2f3193;
                text-decoration: none;
                border-bottom: 1px solid transparent;
                transition: all 0.3s ease;
            }

                .details-description a:hover {
                    color: #f58220;
                    border-bottom-color: #f58220;
                }

            .details-description blockquote {
                border-left: 4px solid #f58220;
                padding-left: 1.5rem;
                margin: 2rem 0;
                font-style: italic;
                color: #555;
                background: rgba(245, 130, 32, 0.05);
                padding: 1.5rem;
                border-radius: 0 8px 8px 0;
            }

            .details-description table {
                width: 100%;
                margin: 2rem 0;
                border-collapse: collapse;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            }

                .details-description table th {
                    background: #2f3193;
                    color: white;
                    font-weight: 600;
                    padding: 1rem;
                    text-align: left;
                }

                .details-description table td {
                    padding: 1rem;
                    border: 1px solid #e0e0e0;
                }

                .details-description table tr:nth-child(even) {
                    background: #f8f9fa;
                }

        .details-sidebar {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            position: sticky;
            top: 100px;
        }

        .sidebar-title {
            color: #2f3193;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #f58220;
        }

        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .sidebar-links li {
                margin-bottom: 0.75rem;
            }

            .sidebar-links a {
                color: #333;
                text-decoration: none;
                display: flex;
                align-items: center;
                padding: 0.5rem 0;
                transition: all 0.3s ease;
            }

                .sidebar-links a:hover {
                    color: #2f3193;
                    padding-left: 10px;
                }

                .sidebar-links a i {
                    margin-right: 10px;
                    color: #f58220;
                }

        .sidebar-cta {
            background: linear-gradient(135deg, #2f3193 0%, #1a1c66 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            text-align: center;
        }

            .sidebar-cta h4 {
                color: white;
                margin-bottom: 1rem;
            }





        .details-sharing {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
        }

        .share-title {
            font-size: 1rem;
            font-weight: 600;
            color: #2f3193;
            margin-bottom: 1rem;
        }

        .share-buttons {
            display: flex;
            gap: 10px;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .share-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }

        .share-facebook {
            background: #3b5998;
        }

        .share-twitter {
            background: #1da1f2;
        }

        .share-whatsapp {
            background: #25d366;
        }

        .share-linkedin {
            background: #0077b5;
        }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .details-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 991px) {
            .details-hero {
                height: 300px;
                margin-bottom: 40px;
            }

            .details-title {
                font-size: 2.5rem;
            }

            .details-subtitle {
                font-size: 1.1rem;
            }

            .details-content {
                padding: 40px 0;
            }

            .details-sidebar {
                position: static;
                margin-top: 40px;
            }
        }

        @media (max-width: 767px) {
            .details-hero {
                height: 250px;
            }

            .details-title {
                font-size: 2rem;
            }

            .details-subtitle {
                font-size: 1rem;
            }

            .details-description h2 {
                font-size: 1.75rem;
            }

            .details-description h3 {
                font-size: 1.25rem;
            }

            .details-description {
                font-size: 1rem;
            }
        }

        @media (max-width: 575px) {
            .details-hero {
                height: 200px;
                margin-bottom: 30px;
            }

            .details-title {
                font-size: 1.75rem;
            }

            .details-meta {
                flex-direction: column;
                gap: 10px;
            }

            .details-sidebar {
                padding: 1.5rem;
            }

            .sidebar-cta {
                padding: 1.25rem;
            }
        }

        /* Print Styles */
        @media print {

            .details-sharing,
            .details-sidebar {
                display: none !important;
            }

            .details-hero {
                height: auto;
                margin-bottom: 20px;
            }

            .details-hero-bg {
                display: none;
            }

            .details-hero-content {
                position: static;
                background: none;
                color: black;
                padding: 0;
            }

            .details-title {
                font-size: 24pt;
                color: black;
                text-shadow: none;
            }

            .details-subtitle {
                font-size: 12pt;
                color: #666;
            }

            .details-content {
                padding: 0;
            }

            .details-image-wrapper {
                box-shadow: none;
                border: 1px solid #ddd;
            }

            .details-description {
                font-size: 12pt;
                line-height: 1.6;
            }

                .details-description h2,
                .details-description h3 {
                    color: black;
                }

                .details-description a {
                    color: black;
                    text-decoration: underline;
                }
        }

        /* Animation Effects */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .details-image-wrapper {
            animation: fadeInUp 0.6s ease;
        }

        .details-description {
            animation: fadeInUp 0.8s ease;
        }

        .details-sidebar {
            animation: fadeInUp 1s ease;
        }
    