
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .hero-section {
            position: relative;
            height: 70vh;
            min-height: 500px;
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .hero-section:hover .hero-image {
            transform: scale(1.05);
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            padding: 60px;
            color: white;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 0.8s ease-out 0.3s forwards;
        }

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

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: white;
        }

        .hero-meta {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 1.1rem;
        }

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

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 50px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .main-content {
            background: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

        .main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
            animation: expandWidth 0.6s ease-out;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 60px; }
        }

        .dropcap {
            float: left;
            font-size: 4.5rem;
            line-height: 0.8;
            font-weight: 700;
            margin: 10px 15px 0 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-content p {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .check-list {
            list-style: none;
            margin: 30px 0;
        }

        .check-list li {
            padding: 15px 20px;
            margin-bottom: 12px;
            background: #f7fafc;
            border-radius: 12px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInLeft 0.5s ease-out forwards;
        }

        .check-list li:nth-child(1) { animation-delay: 0.1s; }
        .check-list li:nth-child(2) { animation-delay: 0.2s; }
        .check-list li:nth-child(3) { animation-delay: 0.3s; }
        .check-list li:nth-child(4) { animation-delay: 0.4s; }
        .check-list li:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .check-list li:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .check-list li i {
            font-size: 1.2rem;
            margin-right: 15px;
            color: #48bb78;
            transition: color 0.3s ease;
        }

        .check-list li:hover i {
            color: white;
        }

        .sidebar {
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .sidebar-card {
            background: white;
            padding: 35px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .sidebar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .widget-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }

        .info-list {
            list-style: none;
        }

        .info-item {
            padding: 18px 0;
            border-bottom: 1px solid #f7fafc;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: padding-left 0.3s ease;
        }

        .info-item:hover {
            padding-left: 10px;
        }

        .info-label {
            font-weight: 600;
            color: #1903e1;
            font-size: 0.95rem;
        }

        .info-value {
            color: #4a5568;
            font-size: 1rem;
        }

        .social-share {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
        }

        .social-btn:hover::before {
            width: 100px;
            height: 100px;
        }

        .social-btn:hover {
            transform: translateY(-3px) scale(1.1);
        }

        .social-btn.facebook { background: linear-gradient(135deg, #1877f2, #0c63d4); }
        .social-btn.twitter { background: linear-gradient(135deg, #1da1f2, #0c85d0); }
        .social-btn.linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
        .social-btn.behance { background: linear-gradient(135deg, #1769ff, #0050d4); }
        .social-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }

        .related-section {
            margin-top: 80px;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .related-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #1a202c;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .related-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .related-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .related-card:hover .related-img {
            transform: scale(1.1);
        }

        .related-content {
            padding: 25px;
        }

        .related-card h6 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .related-card:hover h6 {
            color: #667eea;
        }

        .related-date {
            color: #718096;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .floating-btn {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
            z-index: 1000;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        }

        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }

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

            .main-content {
                padding: 35px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-overlay {
                padding: 30px;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }
        }
