        
        /* 

        Global Styles

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

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --accent: #f59e0b;
            --bg-dark: #0f0f23;
            --bg-darker: #0a0a1a;
            --surface: #1a1a2e;
            --surface-light: #2a2a40;
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --text-muted: #71717a;
            --border: #374151;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            height: 70px;
            display: flex;
            align-items: center;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }



        .cta-inserisci-studio {
                background: #4f46e5;
                color: #fff;
                border: none;
                border-radius: 6px;
                padding: 0.55rem 1.1rem;
                font-size: 0.98rem;
                font-weight: 600;
                margin-left: 1.2rem;
                cursor: pointer;
                transition: background 0.2s;
                box-shadow: 0 2px 8px rgba(79,70,229,0.08);
                white-space: nowrap;
        }
        
        .cta-inserisci-studio:hover {
                background: #3730a3;
        }
            
        @media (max-width: 900px) {
                .cta-inserisci-studio {
                    margin: 0.5rem 0 0.5rem 0.5rem;
                    width: auto;
                    font-size: 0.93rem;
                    padding: 0.45rem 0.9rem;
                    display: inline-block;
                    position: relative;
                    vertical-align: middle;
            }
            
            .logo {
                    display: inline-block;
                    vertical-align: middle;
                    max-width: 60vw;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
            }
            .nav.container {
                flex-wrap: wrap;
            }
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(15, 15, 35, 0.8) 100%);
            padding-top: 70px;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            font-size: 1.125rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

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

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--surface);
            border-color: var(--primary);
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Section */
        .section {
            padding: 4rem 0;
        }

        .text-center {
            text-align: center;
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .card {
            background: var(--surface);
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            text-align: center;
        }

        .card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.875rem;
        }

        .card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .card ul {
            text-align: left;
            color: var(--text-secondary);
            margin: 1rem 0;
            list-style: none;
        }

        .card ul li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
        }

        .card ul li::before {
            content: "•";
            color: var(--primary);
            position: absolute;
            left: 0;
        }

        .price-tag {
            display: inline-block;
            background: var(--accent);
            color: var(--bg-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            margin-top: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .price-tag:hover {
            background: #d97706;
            transform: scale(1.05);
        }

        /* Equipment Section */
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .equipment-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
        }

        .equipment-card h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .equipment-card p {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .step h3 {
            margin-bottom: 0.5rem;
        }

        /* Booking Section */
        .booking-section {
            background: var(--surface);
            border-radius: 1rem;
            padding: 3rem;
            margin-top: 3rem;
            text-align: center;
        }

        .cal-embed {
            background: var(--bg-darker);
            border-radius: 0.75rem;
            padding: 2rem;
            margin-top: 2rem;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
        }

        /* Contact buttons */
        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .contact-btn.call {
            background: #dc2626;
            color: white;
        }

        .contact-btn.email {
            background: var(--surface-light);
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .contact-btn.whatsapp {
            background: #16a34a;
            color: white;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: var(--surface);
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid var(--border);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
        }

        .author-info h4 {
            margin-bottom: 0.25rem;
        }

        .author-info p {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text-primary);
            padding: 1.5rem;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: var(--surface-light);
        }

        .faq-answer {
            display: none;
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
        }

        .faq-answer.active {
            display: block;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Location Section */
        .location-section {
            background: var(--surface);
            border-radius: 1rem;
            padding: 3rem;
            margin-top: 3rem;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .location-info h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .location-details {
            list-style: none;
        }

        .location-details li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .map-placeholder {
            background: var(--bg-darker);
            border-radius: 0.75rem;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
        }

        #altri-studi .other-studios-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 2rem;
                justify-content: center;
                margin: 2rem 0 1rem 0;
        }
        #altri-studi .studio-placeholder {
            background: #f7f7fa;
            border: 1px dashed #bbb;
            border-radius: 12px;
            padding: 2rem 2.5rem;
            min-width: 260px;
            text-align: center;
            color: #888;
            font-size: 1.1rem;
        }
        #altri-studi .btn.btn-primary {
            background: #4f46e5;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 0.85rem 2.2rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 1rem;
        }
        #altri-studi .btn.btn-primary:hover {
            background: #3730a3;
        }
        /* Modal per studio/attrezzatura */
        #studio-form-modal.modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0; top: 0; width: 100vw; height: 100vh;
            background: rgba(0,0,0,0.45);
            align-items: center;
            justify-content: center;
        }
        #studio-form-modal.active {
            display: flex;
        }
        #studio-form-modal .modal-content {
            background: #fff;
            border-radius: 14px;
            max-width: 480px;
            width: 95vw;
            padding: 2.5rem 1.5rem 2rem 1.5rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.18);
            position: relative;
            animation: fadeInModal 0.25s;
        }
        #studio-form-modal .modal-close {
            position: absolute;
            top: 1.1rem;
            right: 1.1rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: #888;
            cursor: pointer;
            transition: color 0.2s;
        }
        #studio-form-modal .modal-close:hover {
            color: #222;
        }
        #studio-form-modal h3 {
            margin-bottom: 1.2rem;
            font-size: 1.35rem;
            color: #3730a3;
        }
        #studio-form-modal .form-embed iframe {
            border-radius: 8px;
            border: 1px solid #eee;
            min-height: 350px;
        }
        @keyframes fadeInModal {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Footer */
        .footer {
            background: var(--bg-darker);
            border-top: 1px solid var(--border);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 1.5rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-darker);
            border-top: 1px solid var(--border);
            padding: 1rem;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .cookie-text a {
            color: var(--primary);
            text-decoration: none;
        }

        .cookie-buttons {
            display: flex;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-btn.accept {
            background: var(--primary);
            color: white;
        }

        .cookie-btn.decline {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--surface);
            border-radius: 1rem;
            padding: 2rem;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .modal-close:hover {
            color: var(--text-primary);
        }

        .form-embed {
            min-height: 500px;
            border-radius: 0.5rem;
            border: 1px solid var(--border);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .trust-indicators {
                flex-direction: column;
                gap: 1rem;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

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

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        
        
        /* 

        Additional styles for blog pages

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

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --accent: #f59e0b;
            --bg-dark: #0f0f23;
            --bg-darker: #0a0a1a;
            --surface: #1a1a2e;
            --surface-light: #2a2a40;
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --text-muted: #71717a;
            --border: #374151;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .container-blog {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header - Same as landing page */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            height: 70px;
            display: flex;
            align-items: center;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Blog Header */
        .blog-header {
            padding: 120px 0 4rem;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(15, 15, 35, 0.8) 100%);
        }

        .breadcrumb {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .blog-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .blog-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .blog-meta {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            padding: 1rem 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Blog Content */
        .blog-content {
            padding: 4rem 0;
        }

        .article {
            font-size: 1.125rem;
            line-height: 1.8;
        }

        .article h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 3rem 0 1.5rem;
            color: var(--text-primary);
            border-left: 4px solid var(--primary);
            padding-left: 1rem;
        }

        .article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem;
            color: var(--primary);
        }

        .article h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            color: var(--text-primary);
        }

        .article p {
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .article strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .article em {
            color: var(--primary);
            font-style: italic;
        }

        .article ul, .article ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .article li {
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
        }

        .article a {
            color: var(--primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .article a:hover {
            border-bottom-color: var(--primary);
        }

        /* Review Cards */
        .review-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .review-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .review-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .review-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .review-price {
            color: var(--accent);
            font-weight: 600;
        }

        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .pros, .cons {
            background: var(--bg-darker);
            border-radius: 0.5rem;
            padding: 1rem;
        }

        .pros h5 {
            color: var(--success);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cons h5 {
            color: var(--error);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pros ul, .cons ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pros li, .cons li {
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
        }

        .pros li::before {
            content: "✓";
            color: var(--success);
            position: absolute;
            left: 0;
        }

        .cons li::before {
            content: "✗";
            color: var(--error);
            position: absolute;
            left: 0;
        }

        .verdict {
            background: var(--primary);
            color: white;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-top: 1.5rem;
        }

        .verdict h5 {
            margin-bottom: 0.5rem;
        }

        /* Tips Section */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .tip-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tip-card:hover {
            transform: translateY(-2px);
            border-color: var(--accent);
        }

        .tip-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.25rem;
        }

        .tip-card h4 {
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .tip-card p {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* Warning/Info Boxes */
        .info-box {
            background: var(--surface);
            border-left: 4px solid var(--primary);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .warning-box {
            background: var(--surface);
            border-left: 4px solid var(--warning);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .info-box h4, .warning-box h4 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .warning-box h4 {
            color: var(--warning);
        }

        /* Table of Contents */
        .toc {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 2rem;
            margin: 2rem 0;
            top: 90px;
        }

        .toc h3 {
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .toc ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .toc li {
            margin-bottom: 0.5rem;
        }

        .toc a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.25rem 0;
            display: block;
            border-radius: 0.25rem;
            padding-left: 0.5rem;
            transition: all 0.3s ease;
        }

        .toc a:hover {
            color: var(--primary);
            background: var(--bg-darker);
        }

        /* CTA Section */
        .cta-section {
            background: var(--surface);
            border-radius: 1rem;
            padding: 3rem;
            margin: 4rem 0;
            text-align: center;
            border: 1px solid var(--border);
        }

        .cta-section h3 {
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .cta-section p {
            margin-bottom: 2rem;
            color: var(--text-secondary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1.125rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

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

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--surface);
            border-color: var(--primary);
        }

        /* FAQ Blog Section */
        .faq-blog {
            margin: 4rem 0;
        }

        .faq-blog h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text-primary);
            padding: 1.5rem;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: var(--surface-light);
        }

        .faq-answer {
            display: none;
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
        }

        .faq-answer.active {
            display: block;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Footer - Same as landing page */
        .footer {
            background: var(--bg-darker);
            border-top: 1px solid var(--border);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 1.5rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.25rem;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

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

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

            .blog-subtitle {
                font-size: 1.125rem;
            }

            .review-cards {
                grid-template-columns: 1fr;
            }

            .pros-cons {
                grid-template-columns: 1fr;
            }

            .toc {
                position: static;
            }

            .article {
                font-size: 1rem;
            }

            .article h2 {
                font-size: 1.5rem;
            }

            .article h3 {
                font-size: 1.25rem;
            }
        }

        /* Print styles */
        @media print {
            .header, .footer, .back-to-top, .cta-section {
                display: none;
            }
            
            .blog-header {
                padding: 2rem 0;
                background: white;
            }
            
            .blog-title {
                color: black !important;
                -webkit-text-fill-color: black !important;
            }
        }