h2 {
            color: #4B5563;
            margin-top: 30px;
            border-bottom: 2px solid #E5E7EB;
            padding-bottom: 10px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .service-card {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        .service-icon {
            width: 120px;
            height: 120px;
            margin-bottom: 20px;
        }
        .service-content {
            text-align: center;
        }
        .service-content h3 {
            margin-top: 0;
            color: #2563EB;
        }
        .code-section {
            background-color: #f8fafc;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            overflow: auto;
        }
        code {
            font-family: 'Courier New', Courier, monospace;
            background-color: #f3f4f6;
            padding: 2px 5px;
            border-radius: 4px;
            font-size: 0.9em;
        }
        pre {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 15px;
            border-radius: 8px;
            overflow-x: auto;
            font-size: 0.9em;
            line-height: 1.5;
        }
        .integration-methods {
            margin-top: 50px;
        }
        .tab-buttons {
            display: flex;
            margin-bottom: 20px;
        }
        .tab-button {
            padding: 10px 20px;
            background-color: #e5e7eb;
            border: none;
            cursor: pointer;
            margin-right: 5px;
            border-radius: 5px 5px 0 0;
            font-weight: 500;
        }
        .tab-button.active {
            background-color: #2563EB;
            color: white;
        }
        .tab-content {
            display: none;
            padding: 20px;
            background-color: #f8fafc;
            border-radius: 0 5px 5px 5px;
        }
        .tab-content.active {
            display: block;
        }