 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '®';
            position: absolute;
            font-size: 35em;
            opacity: 0.05;
            top: -100px;
            left: -50px;
            font-weight: bold;
            animation: rotate 20s linear infinite;
        }

        .header::after {
            content: '™';
            position: absolute;
            font-size: 25em;
            opacity: 0.05;
            bottom: -50px;
            right: -30px;
            font-weight: bold;
            animation: rotate 15s linear infinite reverse;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .header h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            animation: zoomIn 1s ease;
        }

        .header p {
            font-size: 1.4em;
            position: relative;
            z-index: 1;
            animation: fadeIn 1s ease 0.3s backwards;
            max-width: 800px;
            margin: 0 auto;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .intro-section {
            text-align: center;
            margin-bottom: 70px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .intro-section h2 {
            font-size: 2.8em;
            color: #667eea;
            margin-bottom: 20px;
        }

        .intro-section p {
            font-size: 1.2em;
            color: #666;
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 45px 35px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            transition: left 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-icon {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8em;
            color: white;
            margin-bottom: 25px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg) scale(1.1);
        }

        .service-card h3 {
            font-size: 1.7em;
            margin-bottom: 18px;
            color: #667eea;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: #666;
            font-size: 1.05em;
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .service-card ul {
            list-style: none;
            margin-top: 20px;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .service-card ul li {
            padding: 10px 0;
            color: #555;
            position: relative;
            padding-left: 30px;
            font-size: 1.05em;
        }

        .service-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #764ba2;
            font-weight: bold;
            font-size: 1.2em;
        }

        .ip-types {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 20px;
            margin: 80px 0;
        }

        .ip-types h2 {
            text-align: center;
            font-size: 2.8em;
            margin-bottom: 60px;
            color: #333;
        }

        .ip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ip-card {
            background: white;
            padding: 40px;
            border-radius: 18px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            border-top: 5px solid transparent;
            position: relative;
        }

        .ip-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-top-color: #667eea;
        }

        .ip-card .icon {
            font-size: 4em;
            margin-bottom: 20px;
            display: block;
            transition: transform 0.3s ease;
        }

        .ip-card:hover .icon {
            transform: scale(1.2);
        }

        .ip-card h4 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: #667eea;
        }

        .ip-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
            margin: 80px 0;
            padding: 70px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .stat-box {
            text-align: center;
            padding: 25px;
            color: white;
            position: relative;
        }

        .stat-box::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 60%;
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-box:last-child::after {
            display: none;
        }

        .stat-number {
            font-size: 3.8em;
            font-weight: bold;
            display: block;
            margin-bottom: 12px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .stat-label {
            font-size: 1.15em;
            opacity: 0.95;
        }

        .process-section {
            margin: 80px 0;
        }

        .process-section h2 {
            text-align: center;
            font-size: 2.8em;
            margin-bottom: 70px;
            color: #333;
        }

        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin: 0 30px;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

        .timeline-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            flex-shrink: 0;
        }

        .timeline-content h4 {
            font-size: 1.4em;
            margin-bottom: 12px;
            color: #667eea;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.8;
        }

        .benefits {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px;
            margin: 80px 0;
            border-radius: 25px;
        }

        .benefits h2 {
            text-align: center;
            font-size: 2.8em;
            margin-bottom: 60px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-item {
            text-align: center;
            padding: 30px;
        }

        .benefit-item .icon {
            font-size: 3.5em;
            margin-bottom: 20px;
            display: block;
        }

        .benefit-item h4 {
            font-size: 1.3em;
            margin-bottom: 12px;
        }

        .benefit-item p {
            opacity: 0.95;
            line-height: 1.7;
        }

        .cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.8em;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.3em;
            margin-bottom: 40px;
        }

        .footer-form {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 20px;
        }

        .footer-form h2 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 10px;
            color: #333;
        }

        .form-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1em;
            margin-bottom: 50px;
        }

        .contact-form {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            font-size: 1em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1em;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .form-group textarea {
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 60px;
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 35px auto 0;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .footer {
            background: #2d3748;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer p {
            margin: 8px 0;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2em;
            }

            .header p {
                font-size: 1.1em;
            }

            .intro-section h2,
            .ip-types h2,
            .process-section h2,
            .benefits h2,
            .cta h2 {
                font-size: 2em;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-form h2 {
                font-size: 2em;
            }

            .timeline-item {
                flex-direction: column !important;
            }

            .timeline-content {
                margin: 20px 0;
            }

            .stat-box::after {
                display: none;
            }
        }