        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #f8f9fa;
            --accent-color: #ff6b35;
            --text-color: #333;
            --light-text: #6c757d;
            --white: #fff;
            --border-color: #e9ecef;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f5f7fa;
        }

        /* Header & Navigation */
        header {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--white);
        }

        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-color);
            margin: 0 10px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }

        /* Blog Hero Section */
        .blog-hero {
            background: linear-gradient(135deg, var(--primary-color), #1a3a7a);
            color: var(--white);
            padding: 80px 0 60px;
            text-align: center;
        }

        .blog-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .blog-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }

        .search-box .input-group {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 30px;
            overflow: hidden;
        }

        .search-box input {
            border: none;
            padding: 15px 20px;
            font-size: 1rem;
        }

        .search-box button {
            background-color: var(--accent-color);
            border: none;
            color: white;
            padding: 0 25px;
            font-weight: 500;
        }

        /* Blog Content */
        .blog-content {
            padding: 60px 0;
        }

        .blog-posts {
            margin-bottom: 40px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .blog-img {
            height: 200px;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.05);
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-category {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .blog-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--light-text);
            margin-bottom: 20px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: var(--light-text);
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
        }

        .blog-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 10px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Tags Section */
        .tags-section {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }

        .tags-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .tag {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

        .tag:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Pagination */
        .pagination {
            justify-content: center;
            margin-top: 40px;
        }

        .page-link {
            color: var(--primary-color);
            border: 1px solid var(--border-color);
            padding: 10px 18px;
        }

        .page-link:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: #1a2b4e;
            padding: 60px 0 20px;
        }

        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: white;
        }

        .contact-info p {
            color: #b0b7c3;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 10px;
            margin-top: 5px;
            width: 16px;
        }

        .social-icons {
            display: flex;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background-color 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--accent-color);
        }

        .social-icons i {
            color: white;
            font-size: 1.2rem;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b7c3;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .blog-hero h1 {
                font-size: 2rem;
            }

            .blog-card h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .blog-hero {
                padding: 60px 0 40px;
            }

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

         :root {
            --primary-color: #2c5aa0;
            --secondary-color: #f8f9fa;
            --accent-color: #ff6b35;
            --text-color: #333;
            --light-text: #6c757d;
            --white: #fff;
            --border-color: #e9ecef;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f5f7fa;
        }

        /* Header & Navigation */
        header {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--white);
        }

        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-color);
            margin: 0 10px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }

        /* Article Hero */
        .article-hero {
            background: linear-gradient(135deg, var(--primary-color), #1a3a7a);
            color: var(--white);
            padding: 80px 0 40px;
        }

        .article-hero .container {
            max-width: 900px;
        }

        .article-category {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .article-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }

        .article-excerpt {
            font-size: 1.2rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .article-date {
            opacity: 0.8;
        }

        .article-stats {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .article-stat {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }

        /* Article Content */
        .article-content {
            padding: 60px 0;
        }

        .article-body {
            background: var(--white);
            border-radius: 10px;
            padding: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            max-width: 900px;
            margin: 0 auto;
        }

        .article-featured-img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .article-featured-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .article-body h2 {
            color: var(--primary-color);
            margin: 30px 0 15px;
            font-size: 1.8rem;
        }

        .article-body h3 {
            color: var(--primary-color);
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }

        .article-body p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .article-body ul, .article-body ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .article-body li {
            margin-bottom: 10px;
        }

        .info-box {
            background-color: var(--secondary-color);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }

        .info-box h4 {
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .step-box {
            background-color: #e8f4ff;
            border: 1px solid #c2e0ff;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .step-number {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 10px;
            font-weight: bold;
        }

        .highlight-box {
            background-color: #fff9e6;
            border: 1px solid #ffd966;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .highlight-box h4 {
            color: #e6a700;
            margin-bottom: 10px;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .tag {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

        .tag:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Article Actions */
        .article-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

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

        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            color: var(--text-color);
            transition: background-color 0.3s, color 0.3s;
        }

        .share-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Related Articles */
        .related-articles {
            padding: 60px 0;
            background-color: var(--secondary-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--primary-color);
        }

        .blog-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .blog-img {
            height: 200px;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.05);
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-category {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .blog-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--light-text);
            margin-bottom: 20px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: var(--light-text);
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
        }

        /* Footer */
        footer {
            background-color: #1a2b4e;
            padding: 60px 0 20px;
        }

        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: white;
        }

        .contact-info p {
            color: #b0b7c3;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 10px;
            margin-top: 5px;
            width: 16px;
        }

        .social-icons {
            display: flex;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background-color 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--accent-color);
        }

        .social-icons i {
            color: white;
            font-size: 1.2rem;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b7c3;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .article-hero h1 {
                font-size: 2rem;
            }
            
            .article-body {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .article-hero {
                padding: 60px 0 30px;
            }
            
            .article-content {
                padding: 40px 0;
            }
            
            .article-actions {
                flex-direction: column;
                gap: 20px;
            }
        }

         .consultancy-hero {
            background: linear-gradient(135deg, #2c5aa0, #1a3a7a);
            color: white;
            padding: 100px 0 60px;
            text-align: center;
        }
        
        .consultancy-steps {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .step-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: #2c5aa0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .step-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .benefits-section {
            padding: 80px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .benefit-icon {
            background: #2c5aa0;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #2c5aa0, #1a3a7a);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .consultancy-package {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .package-header {
            border-bottom: 2px solid #2c5aa0;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .guarantee-badge {
            background: #ff6b35;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            margin-top: 20px;
            font-weight: 600;
        }

                .integration-hero {
            background: linear-gradient(135deg, #2c5aa0, #1a3a7a);
            color: white;
            padding: 100px 0 60px;
        }
        
        .integration-features {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s ease;
            border-left: 4px solid #2c5aa0;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: #2c5aa0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        .integration-process {
            padding: 80px 0;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .step-number {
            background: #2c5aa0;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .entegrator-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .entegrator-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .entegrator-card:hover {
            transform: translateY(-5px);
        }
        
        .entegrator-logo {
            height: 60px;
            margin-bottom: 20px;
            object-fit: contain;
        }
        
        .cta-section-integration {
            background: linear-gradient(135deg, #2c5aa0, #1a3a7a);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .integration-benefits {
            padding: 80px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            background: #2c5aa0;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .tech-stack {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .tech-item {
            text-align: center;
            padding: 20px;
        }
        
        .tech-icon {
            font-size: 3rem;
            color: #2c5aa0;
            margin-bottom: 15px;
        }

                .eimza-hero {
            background: linear-gradient(135deg, #2c5aa0, #1a3a7a);
            color: white;
            padding: 100px 0 60px;
        }
        
        .eimza-features {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s ease;
            border-left: 4px solid #2c5aa0;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: #2c5aa0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        .eimza-process {
            padding: 80px 0;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .step-number {
            background: #2c5aa0;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .providers-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .provider-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .provider-card:hover {
            transform: translateY(-5px);
        }
        
        .provider-logo {
            height: 60px;
            margin-bottom: 20px;
            object-fit: contain;
        }
        
        .cta-section-eimza {
            background: linear-gradient(135deg, #2c5aa0, #1a3a7a);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .benefits-section {
            padding: 80px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            background: #2c5aa0;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .comparison-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .comparison-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .table th {
            background: #2c5aa0;
            color: white;
            border: none;
            padding: 20px;
        }
        
        .table td {
            padding: 20px;
            vertical-align: middle;
        }
        
        .badge-eimza {
            background: #28a745;
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
        }
        
        .package-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .package-card:hover {
            border-color: #2c5aa0;
            transform: translateY(-5px);
        }
        
        .package-card.popular {
            border-color: #2c5aa0;
            position: relative;
            transform: scale(1.05);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b35;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }