  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #0f172a;
            --bg-secondary: #1e293b;
            --text-primary: #e2e8f0;
            --text-secondary: #94a3b8;
            --accent-primary: #f59e0b;
            --accent-secondary: #d97706;
            --card-bg: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            --border-color: #334155;
            --shadow-color: rgba(0,0,0,0.3);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            min-height: 100vh;
            transition: all 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

         .admin-login {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem auto;
            max-width: 400px;
            border: 2px solid var(--accent-primary);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px var(--shadow-color);
        }

        .admin-login::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .admin-login h3 {
            color: var(--accent-primary);
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            z-index: 1;
            font-weight: bold;
            font-size: 1.8rem;
        }

        .admin-login form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .admin-login input {
            width: 100%;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            padding: 0.8rem;
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .admin-login input:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
        }

        .admin-login button {
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            color: var(--bg-secondary);
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .admin-login button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
        }

        .error-message, .success-message {
            text-align: center;
            margin-top: 1rem;
            display: none;
            position: relative;
            z-index: 1;
        }

        .error-message {
            color: #ef4444;
        }

        .success-message {
            color: #10b981;
        }

        @media (max-width: 480px) {
            .admin-login {
                padding: 1.5rem;
                max-width: 90%;
            }

            .admin-login h3 {
                font-size: 1.5rem;
            }

            .admin-login input,
            .admin-login button {
                font-size: 0.9rem;
            }
        }

               .admin-dashboard {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem auto;
            border: 2px solid var(--accent-primary);
            box-shadow: 0 8px 32px var(--shadow-color);
            position: relative;
            overflow: hidden;
        }

        .admin-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .admin-dashboard h2 {
            color: var(--accent-primary);
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: bold;
            font-size: 2rem;
            position: relative;
            z-index: 1;
        }

        .logout-button {
            background: linear-gradient(45deg, #ef4444, #dc2626);
            color: var(--text-primary);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto 2rem;
        }

        .logout-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
        }

        .post-form, .edit-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .post-form input,
        .post-form textarea,
        .edit-form input,
        .edit-form textarea {
            width: 100%;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            padding: 0.8rem;
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .post-form textarea,
        .edit-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        .post-form input:focus,
        .post-form textarea:focus,
        .edit-form input:focus,
        .edit-form textarea:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
        }

        .post-form button,
        .edit-form button {
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            color: var(--bg-secondary);
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .post-form button:hover,
        .edit-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
        }

        .success-message, .error-message {
            text-align: center;
            margin-top: 1rem;
            display: none;
            position: relative;
            z-index: 1;
        }

        .success-message {
            color: #10b981;
        }

        .error-message {
            color: #ef4444;
        }

        .posts-list {
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .posts-list h3 {
            color: var(--accent-primary);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .post-item {
            background: var(--bg-secondary);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
        }

        .post-item h4 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .post-item p {
            color: var(--text-secondary);
        }

        .post-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .edit-button, .delete-button {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .edit-button {
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            color: var(--text-primary);
        }

        .edit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        }

        .delete-button {
            background: linear-gradient(45deg, #ef4444, #dc2626);
            color: var(--text-primary);
        }

        .delete-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
        }

        @media (max-width: 480px) {
            .admin-dashboard {
                padding: 1.5rem;
            }

            .admin-dashboard h2 {
                font-size: 1.5rem;
            }

            .post-form input,
            .post-form textarea,
            .edit-form input,
            .edit-form textarea,
            .post-form button,
            .edit-form button,
            .logout-button,
            .edit-button,
            .delete-button {
                font-size: 0.9rem;
            }

            .post-actions {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Header with enhanced styling - Fixed height for mobile */
        .header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(15px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 20px var(--shadow-color);
            transition: all 0.3s ease;
            height: auto;
            min-height: 70px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-logo {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .author-logo:hover {
            transform: scale(1.05);
        }

        .site-info h1 {
            font-size: 1.5rem;
            color: #f1f5f9;
            margin: 0;
        }

        .site-info .tagline {
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 101;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--accent-primary);
            margin: 3px 0;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            transition: all 0.3s ease;
        }

        .nav-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--accent-primary);
            background: rgba(245, 158, 11, 0.1);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(10px);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 2rem;
            padding-top: 100px; /* Account for header height */
        }

        .mobile-nav-menu {
            list-style: none;
            text-align: center;
        }

        .mobile-nav-menu li {
            margin: 1.5rem 0;
        }

        .mobile-nav-menu a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 8px;
            display: block;
            cursor: pointer;
        }

        .mobile-nav-menu a:hover,
        .mobile-nav-menu a.active {
            color: var(--accent-primary);
            background: rgba(245, 158, 11, 0.1);
            transform: scale(1.05);
        }

        /* Main content sections */
        .main-section {
            display: block;
        }

        .main-section.hidden {
            display: none;
        }

        /* Hero Section - Fixed top margin for mobile */
        .hero {
            padding: 120px 0 80px;
            text-align: center;
            color: var(--text-primary);
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(220, 38, 38, 0.1) 50%, rgba(99, 102, 241, 0.1) 100%);
            border-radius: 12px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            margin-top: 90px; /* Default margin for desktop */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            color: var(--accent-primary);
            margin-bottom: 2rem;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .hero .description {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto 2rem auto;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            color: var(--bg-secondary);
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
            animation: fadeInUp 1s ease 0.4s both;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
            border-color: #f1f5f9;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 32px var(--shadow-color);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .services h2, .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .service-category {
            margin-bottom: 4rem;
        }

        .category-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-weight: bold;
            position: relative;
            padding-bottom: 10px;
        }

        .category-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--accent-primary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .service-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow-color);
            transition: all 0.3s ease;
            border: 1px solid rgba(245, 158, 11, 0.2);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px var(--shadow-color);
            border-color: rgba(245, 158, 11, 0.4);
        }

        .service-card.blockchain {
            border-left: 4px solid #8b5cf6;
        }

        .service-card.traditional {
            border-left: 4px solid #06b6d4;
        }

        .service-card h3 {
            color: var(--text-primary);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: bold;
            text-align: center;
        }

        .service-card p {
            margin-bottom: 1rem;
            color: var(--text-secondary);
            text-align: center;
        }

        .price {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent-primary);
            margin-bottom: 1rem;
            text-align: center;
        }

        .features {
            list-style: none;
        }

        .features li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-primary);
        }

        .features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }

        /* Articles Section */
        .articles-preview, .articles {
            padding: 80px 0;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 32px var(--shadow-color);
            position: relative;
        }

        .articles-preview::before, .articles::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .post-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow-color);
            transition: all 0.3s ease;
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-left: 3px solid var(--accent-primary);
            position: relative;
            overflow: hidden;
        }

        .post-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px var(--shadow-color);
            border-color: rgba(99, 102, 241, 0.4);
        }

        .post-title {
            color: var(--text-primary);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: bold;
            line-height: 1.4;
        }

        .post-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: flex;
            gap: 1rem;
        }

        .post-excerpt {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .read-more-btn {
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .post-tag {
            background: rgba(99, 102, 241, 0.2);
            color: #a5b4fc;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(99, 102, 241, 0.3);
        }

        /* Single Post View */
        .single-post-view {
            padding: 2rem 0;
        }

        .back-to-articles-btn {
            background: rgba(99, 102, 241, 0.2);
            color: #a5b4fc;
            border: 1px solid rgba(99, 102, 241, 0.3);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .back-to-articles-btn:hover {
            background: rgba(99, 102, 241, 0.3);
            transform: translateY(-2px);
        }

        .full-post-content {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow-color);
            border: 1px solid rgba(99, 102, 241, 0.2);
            position: relative;
            overflow: hidden;
        }

        .full-post-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .full-post-header {
            border-bottom: 2px solid rgba(99, 102, 241, 0.2);
            padding-bottom: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .full-post-title {
            color: var(--text-primary);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
            line-height: 1.3;
        }

        .full-post-meta {
            color: var(--text-secondary);
            font-size: 1rem;
            display: flex;
            gap: 2rem;
        }

        .full-post-text {
            color: var(--text-primary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .full-post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            position: relative;
            z-index: 1;
        }

        .full-post-tag {
            background: rgba(99, 102, 241, 0.3);
            color: #c7d2fe;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid rgba(99, 102, 241, 0.4);
        }

        .no-posts {
            text-align: center;
            padding: 4rem 0;
            color: var(--text-secondary);
            font-style: italic;
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 32px var(--shadow-color);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--accent-primary);
            font-weight: bold;
        }

        .about h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-primary);
            font-weight: bold;
        }

        .about p {
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 32px var(--shadow-color);
            text-align: center;
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--accent-primary);
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto 3rem auto;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow-color);
            border: 1px solid rgba(245, 158, 11, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button {
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            color: var(--bg-secondary);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
        }

        .contact-form label {
            display: block;
            text-align: left;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .contact-form .required::after {
            content: '*';
            color: var(--accent-primary);
            margin-left: 0.2rem;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .contact-item {
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 20px var(--shadow-color);
            border: 1px solid rgba(245, 158, 11, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
        }

        .contact-item h3 {
            color: var(--accent-primary);
            margin-bottom: 1rem;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .contact-item p {
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        /* SEO Enhancement Section */
        .seo-section {
            padding: 60px 0;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            color: var(--text-primary);
            text-align: center;
            margin: 2rem 0;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 32px var(--shadow-color);
            position: relative;
            overflow: hidden;
        }

        .seo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .seo-section h2 {
            position: relative;
            z-index: 1;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .seo-section p {
            position: relative;
            z-index: 1;
            color: var(--text-secondary);
        }

        .seo-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .seo-benefit {
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: 10px;
            border: 1px solid rgba(245, 158, 11, 0.2);
            box-shadow: 0 5px 20px var(--shadow-color);
            transition: all 0.3s ease;
        }

        .seo-benefit:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
        }

        .seo-benefit h3 {
            margin-bottom: 1rem;
            font-weight: bold;
            color: var(--text-primary);
        }

        .seo-benefit p {
            color: var(--text-secondary);
        }

        /* Footer */
        .footer {
            background: var(--bg-primary);
            color: var(--text-secondary);
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid var(--border-color);
        }

        /* Social Media Icons CSS */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 20px;
            flex-wrap: wrap;
        }

        .social-icons a {
            color: var(--text-primary);
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: scale(1.2);
        }

        .fa-linkedin:hover { color: #0077b5; }
        .fa-x-twitter:hover { color: #000000; }
        .fa-github:hover { color: #333333; }
        .fa-instagram:hover { color: #e1306c; }
        .fa-whatsapp:hover { color: #25D366; }
        .fa-facebook:hover { color: #1877f2; }
        .fa-youtube:hover { color: #ff0000; }
        .fa-discord:hover { color: #5865f2; }
        .fa-telegram:hover { color: #0088cc; }
        .fa-reddit:hover { color: #ff4500; }
        .fa-medium:hover { color: #00ab6c; }
        .fa-tiktok:hover { color: #000000; }
        .fa-pinterest:hover { color: #e60023; }
        .fa-snapchat:hover { color: #fffc00; }
        .fa-mastodon:hover { color: #6364ff; }

        /* Responsive design for social icons */
        @media (max-width: 600px) {
            .social-icons a {
                font-size: 22px;
                gap: 10px;
            }
        }

        /* Cookie Consent Banner - Fixed positioning and visibility */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(30, 41, 59, 0.98);
            backdrop-filter: blur(10px);
            color: var(--text-primary);
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 -4px 20px var(--shadow-color);
            border-top: 1px solid var(--border-color);
            z-index: 1001;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .cookie-banner.hidden {
            transform: translateY(100%);
            opacity: 0;
            pointer-events: none;
        }

        .cookie-banner p {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.4;
            flex: 1;
            min-width: 200px;
        }

        .cookie-banner .cookie-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .cookie-banner button {
            background: var(--accent-primary);
            color: var(--bg-secondary);
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .cookie-banner button:hover {
            background: var(--accent-secondary);
            transform: translateY(-1px);
        }

        .cookie-banner button.decline {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        .cookie-banner button.decline:hover {
            background: rgba(148, 163, 184, 0.1);
            color: var(--text-primary);
        }

        /* WhatsApp Chat Feature */
        .whatsapp-chat {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
            background: #20c35b;
        }

        .whatsapp-button i {
            font-size: 30px;
            color: white;
        }

        .whatsapp-button svg {
            width: 30px;
            height: 30px;
            fill: white;
            display: none;
        }

        .whatsapp-button.no-fontawesome svg {
            display: block;
        }

        .whatsapp-button.no-fontawesome i {
            display: none;
        }

        .whatsapp-button::before {
            content: 'Chat with us on WhatsApp';
            position: absolute;
            bottom: 100%;
            right: 50%;
            transform: translateX(50%);
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .whatsapp-button:hover::before {
            opacity: 1;
            visibility: visible;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-in-out;
        }

        /* Enhanced Responsive Design with Mobile-First Header Scaling */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-overlay {
                display: block;
            }

            .nav-container {
                flex-wrap: nowrap;
                padding: 0 1rem;
            }

            /* Mobile header adjustments */
            .header {
                min-height: 80px;
            }

            /* Hero section mobile adjustments */
            .hero {
                padding: 60px 0 60px;
                margin-top: 100px; /* Increased margin for mobile header */
                margin-left: 1rem;
                margin-right: 1rem;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero .subtitle {
                font-size: 1rem;
            }

            .hero .description {
                font-size: 0.95rem;
                padding: 0 1rem;
            }

            /* All section headers mobile scaling */
            .services h2, .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .category-title {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }

            .about h2, .contact h2 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .about h3 {
                font-size: 1.5rem;
                margin-bottom: 1.2rem;
            }

            .service-card h3 {
                font-size: 1.2rem;
            }

            .post-title {
                font-size: 1.1rem;
            }

            .full-post-title {
                font-size: 1.8rem;
                line-height: 1.3;
            }

            .seo-section h2 {
                font-size: 2rem;
            }

            .seo-benefit h3, .contact-item h3 {
                font-size: 1.2rem;
            }

            /* Grid adjustments */
            .services-grid, .posts-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .site-info h1 {
                font-size: 1.1rem;
            }

            .site-info .tagline {
                font-size: 0.7rem;
            }

            .full-post-content {
                padding: 2rem;
            }

            .seo-benefits {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            /* Cookie banner mobile adjustments */
            .cookie-banner {
                padding: 1rem;
                flex-direction: column;
                text-align: center;
            }

            .cookie-banner p {
                font-size: 0.85rem;
                margin-bottom: 1rem;
            }

            .cookie-banner .cookie-buttons {
                justify-content: center;
                width: 100%;
            }

            .cookie-banner button {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }

            /* Mobile menu improvements */
            .mobile-nav-menu a {
                font-size: 1.3rem;
                padding: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 0.5rem;
            }

            .container {
                padding: 0 0.5rem;
            }

            /* Extra small mobile adjustments */
            .hero {
                padding: 40px 0 40px;
                margin-top: 90px;
                margin-left: 0.5rem;
                margin-right: 0.5rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero .subtitle {
                font-size: 0.9rem;
            }

            .hero .description {
                font-size: 0.9rem;
            }

            .author-logo {
                width: 40px;
                height: 40px;
            }

            .service-card, .post-card {
                padding: 1.5rem;
            }

            .services h2, .section-title {
                font-size: 1.7rem;
            }

            .category-title {
                font-size: 1.4rem;
            }

            .about h2, .contact h2 {
                font-size: 1.7rem;
            }

            .contact-form input,
            .contact-form textarea {
                padding: 0.6rem;
                font-size: 0.9rem;
            }

            .contact-form button {
                padding: 0.6rem 1rem;
            }

            /* WhatsApp button mobile adjustments */
            .whatsapp-button {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }

            .whatsapp-button i, .whatsapp-button svg {
                width: 24px;
                height: 24px;
                font-size: 24px;
            }

            .whatsapp-button::before {
                font-size: 0.8rem;
                padding: 6px 10px;
            }

            /* Cookie banner extra small mobile */
            .cookie-banner {
                padding: 0.8rem;
            }

            .cookie-banner p {
                font-size: 0.8rem;
            }

            .cookie-banner button {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
        }

        /* Loading and Smooth Transitions */
        .loading {
            opacity: 0.6;
            pointer-events: none;
        }

        body.mobile-menu-open {
            overflow: hidden;
        }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Enhanced hover effects */
        .service-card:hover::before,
        .post-card:hover::before,
        .contact-item:hover::before,
        .seo-benefit:hover::before,
        .contact-form:hover::before {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
        }

/* Terms */

        .container2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main content */
        .main-content2 {
            padding: 120px 0 80px;
            min-height: calc(100vh - 120px);
        }

        .terms-section {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 32px var(--shadow-color);
            position: relative;
            overflow: hidden;
            padding: 3rem;
        }

        .terms-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .terms-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .terms-intro {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.8;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .terms-content {
            position: relative;
            z-index: 1;
        }

        .terms-section-title {
            font-size: 1.8rem;
            color: var(--accent-primary);
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            font-weight: bold;
            border-bottom: 2px solid rgba(245, 158, 11, 0.3);
            padding-bottom: 0.5rem;
        }

        .terms-subsection {
            margin-bottom: 2rem;
        }

        .terms-subsection h3 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .terms-subsection h4 {
            font-size: 1.1rem;
            color: var(--accent-primary);
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .terms-subsection p,
        .terms-subsection li {
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            line-height: 1.7;
        }

        .terms-subsection ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .terms-subsection ul li {
            margin-bottom: 0.5rem;
        }

        .privacy-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid var(--border-color);
        }


        /* Mobile responsive */
        @media (max-width: 768px) {

            .main-content2 {
                padding: 100px 0 60px;
            }

            .terms-section {
                padding: 2rem;
                margin: 1rem;
            }

            .terms-title {
                font-size: 2rem;
            }

            .terms-intro {
                font-size: 1rem;
            }

            .terms-section-title {
                font-size: 1.5rem;
            }

        }

        @media (max-width: 480px) {
            .container2 {
                padding: 0 0.5rem;
            }

            .terms-section {
                padding: 1.5rem;
            }

            .terms-title {
                font-size: 1.7rem;
            }

        }

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

        /* form*/


    .contact-form {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
      max-width: 600px;
      width: 100%;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .contact-form h2 {
      margin-bottom: 20px;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--text-primary);
      text-align: center;
    }

    .contact-form label {
      display: block;
      text-align: left;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      font-weight: bold;
    }

    .contact-form .required::after {
      content: '*';
      color: var(--accent-primary);
      margin-left: 0.2rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      margin-bottom: 15px;
      transition: border 0.2s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      border-color: var(--accent-primary);
      outline: none;
    }

    .contact-form textarea {
      resize: vertical;
    }

    fieldset {
      border: none;
      margin: 15px 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap; /* allows wrapping if there are many options */
      gap: 5px;       /* spacing between checkboxes */
    }

    legend {
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--text-primary);
    }

    fieldset label {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #555;
  cursor: pointer;

    }

    .contact-form button {
      background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
      color: var(--bg-secondary);
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    }

    .g-recaptcha {
      margin: 20px 0;
    }

    /* Footer Articles */
.footer-articles {
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-articles-title {
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.footer-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-articles-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-article-link {
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-article-link:hover {
    color: var(--accent-primary);
    background: rgba(245, 158, 11, 0.1);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .footer-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-articles-title {
        font-size: 1.5rem;
    }

    .footer-article-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-articles {
        padding: 1.5rem 0;
    }

    .footer-articles-title {
        font-size: 1.3rem;
    }

    .footer-article-link {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}
