 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Work Sans", serif;
            line-height: 1.6;
            color: #333;
            background: #ffffff;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #f8fdff 0%, #e3f2fd 30%, #bbdefb 100%);
            color: #1a365d;
            position: relative;
            border-bottom: 3px solid #2563eb;
            margin-top: 80px;
        }

        .header-tag {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid #e2e8f0;
            min-height: 60px;
        }

        .logo {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 700;
            color: #1a365d;
            text-decoration: none;
            font-family: 'Jost', serif;
        }

        .social-links {
            display: flex;
            gap: clamp(0.5rem, 1.5vw, 1rem);
            align-items: center;
        }

        .social-links span {
            font-size: clamp(0.75rem, 2vw, 0.9rem);
            color: #64748b;
            margin-right: clamp(0.25rem, 1vw, 0.5rem);
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(28px, 6vw, 36px);
            height: clamp(28px, 6vw, 36px);
            background: #ffffff;
            border-radius: 6px;
            color: #64748b;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            font-size: clamp(12px, 3vw, 16px);
        }

        .social-links a.facebook:hover {
            background: #1877f2;
            color: white;
            border-color: #1877f2;
        }

        .social-links a.whatsapp:hover {
            background: #25d366;
            color: white;
            border-color: #25d366;
        }

        .social-links a.linkedin:hover {
            background: #0a66c2;
            color: white;
            border-color: #0a66c2;
        }

        .breadcrumb {
            padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(1rem, 4vw, 2rem);
            font-size: clamp(0.75rem, 2vw, 0.9rem);
            color: #64748b;
            background: rgba(255, 255, 255, 0.7);
            font-family: "Work Sans", serif;
        }

        .breadcrumb a {
            color: #2563eb;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: clamp(0.5rem, 2vw, 1rem);
            margin-bottom: 1.5rem;
            font-size: clamp(0.75rem, 2vw, 0.9rem);
            color: #64748b;
            font-family: "Work Sans", serif;
            flex-wrap: wrap;
        }

        .category-tag {
            background: #dc2626;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: clamp(0.7rem, 1.8vw, 0.8rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .hero-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #1a365d;
            font-family: 'Jost', serif;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            color: #475569;
            margin-bottom: 1.5rem;
            max-width: 800px;
            line-height: 1.6;
            font-style: italic;
        }

        /* Main Content */
        .content {
            max-width: 800px;
            margin: 0 auto;
            padding: clamp(1rem, 4vw, 2rem);
            background: white;
        }

        .content h2 {
            color: #1a365d;
            font-size: clamp(1.4rem, 3.5vw, 1.8rem);
            margin: 2.5rem 0 1rem 0;
            font-weight: 600;
            line-height: 1.3;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 0.5rem;
            font-family: 'Jost', serif;
        }

        .content h3 {
            color: #334155;
            font-size: clamp(1.1rem, 2.8vw, 1.3rem);
            margin: 2rem 0 0.8rem 0;
            font-weight: 600;
            font-family: 'Jost', serif;
        }

        .content p {
            margin-bottom: 1.2rem;
            color: #374151;
            line-height: 1.8;
            font-size: clamp(0.9rem, 2.2vw, 1rem);
            text-align: justify;
        }

        .content ul {
            margin: 1rem 0 1.5rem 2rem;
            color: #374151;
            line-height: 1.8;
        }

        .content ul li {
            margin-bottom: 0.5rem;
        }

        /* Image Styles */
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }

        /* Professional Cards */
        .highlight-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #2563eb;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
        }

        .highlight-card h3 {
            color: #1a365d;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-family: 'Jost', serif;
        }

        .highlight-card p {
            color: #374151;
            margin-bottom: 0;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(1rem, 3vw, 1.5rem);
            margin: 2rem 0;
        }

        .feature-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: clamp(1rem, 3vw, 1.5rem);
            border-radius: 4px;
        }

        .feature-card h3 {
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: clamp(0.95rem, 2.3vw, 1.1rem);
            color: #1a365d;
            font-family: 'Jost', serif;
        }

        .feature-card p {
            margin-bottom: 0;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
        }

        .capabilities-list {
            display: block;
            margin: 1rem 0 1.5rem 2rem;
            list-style: disc;
            padding: 0;
        }

        .capabilities-list li {
            margin-bottom: 0.5rem;
            padding: 0;
            background: none;
            border: none;
            border-radius: 0;
        }

        /* Regional sections */
        .regional-section {
            margin: 2rem 0;
        }

        .regional-section h3 {
            color: #1a365d;
            font-size: clamp(1.1rem, 2.8vw, 1.3rem);
            margin-bottom: 0.8rem;
            font-family: 'Jost', serif;
        }

        /* Share Section */
        .share-section {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 1.5rem;
            margin: 3rem 0;
            border-radius: 8px;
            text-align: center;
        }

        .share-text {
            font-size: clamp(0.9rem, 2.2vw, 1rem);
            color: #64748b;
            font-weight: 500;
            margin-right: 1rem;
            font-family: 'Jost', serif;
        }

        .share-buttons {
            display: inline-flex;
            gap: clamp(0.5rem, 1.5vw, 0.8rem);
            align-items: center;
        }

        .share-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(32px, 6vw, 40px);
            height: clamp(32px, 6vw, 40px);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .share-button.twitter {
            background: #ffffff;
            color: #1da1f2;
        }

        .share-button.twitter:hover {
            background: #1da1f2;
            color: white;
            border-color: #1da1f2;
        }

        .share-button.facebook {
            background: #ffffff;
            color: #1877f2;
        }

        .share-button.facebook:hover {
            background: #1877f2;
            color: white;
            border-color: #1877f2;
        }

        .share-button.linkedin {
            background: #ffffff;
            color: #0a66c2;
        }

        .share-button.linkedin:hover {
            background: #0a66c2;
            color: white;
            border-color: #0a66c2;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            border: 2px solid #cbd5e1;
            padding: 2rem;
            margin: 3rem 0;
            border-radius: 8px;
            text-align: center;
        }

        .contact-section h2 {
            color: #1a365d;
            margin-bottom: 1.5rem;
            font-size: clamp(1.3rem, 3.2vw, 1.6rem);
            border: none;
            padding: 0;
            font-family: 'Jost', serif;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: clamp(1.5rem, 5vw, 3rem);
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: clamp(0.95rem, 2.3vw, 1.1rem);
            color: #1a365d;
            font-weight: 500;
        }

        .contact-item i {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #2563eb;
        }

        .contact-item a {
            color: #1a365d;
            text-decoration: none;
        }

        .contact-item a:hover {
            color: #2563eb;
            text-decoration: underline;
        }

        /* Article footer */
        .article-footer {
            border-top: 1px solid #e2e8f0;
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
        }

        .bottom-bar .staunch-info{margin-top:25px;}
        @media (max-width: 768px) {
            .header-tag {
                flex-direction: column;
                gap: 0.75rem;
                padding: 0.75rem 1rem;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .social-links span {
                display: none;
            }

            .article-meta {
                justify-content: center;
                text-align: center;
            }

            .content {
                padding: 1rem;
            }

            .feature-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .share-section {
                text-align: center;
            }

            .share-text {
                display: block;
                margin-bottom: 1rem;
                margin-right: 0;
            }
        }

        @media (max-width: 480px) {
            .header-tag {
                padding: 0.5rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .social-links a {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .hero-content {
                padding: 1.5rem 1rem;
            }

            .content {
                padding: 0.75rem;
            }
        }