:root {
            --primary: #8e44ad;
            --primary-dark: #732d91;
            --secondary: #2c3e50;
            --accent: #9b59b6;
            --light: #f8f9fa;
            --gray: #7f8c8d;
            --light-gray: #ecf0f1;
            --success: #27ae60;
            --warning: #f39c12;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--secondary);
            line-height: 1.6;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: var(--shadow);
        }

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

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

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

        /* Hero Section */
        .ma-hero {
            background: linear-gradient(135deg, #6c3483 0%, #8e44ad 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .ma-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            opacity: 0.15;
        }

        .ma-hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .ma-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .ma-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Overview Section */
        .overview {
            padding: 100px 0;
            background-color: white;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--gray);
        }

        .overview-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .overview-text {
            flex: 1;
        }

        .overview-image {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .benefits-list {
            margin: 30px 0;
            padding-left: 20px;
        }

        .benefits-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }

        .benefits-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--success);
            font-size: 1.2rem;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: #f8f9fa;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-left: 4px solid var(--primary);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-card h3 i {
            background: var(--light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .feature-card p {
            margin-bottom: 15px;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
            color: white;
        }

        .benefits-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .benefit-tab {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .benefit-tab.active, .benefit-tab:hover {
            background: var(--primary);
        }

        .benefit-content {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 40px;
            display: none;
        }

        .benefit-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .benefit-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .benefit-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .benefit-item i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 5px;
        }

        /* Advantages Section */
        .advantages {
            padding: 100px 0;
            background-color: white;
        }

        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .advantage-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .advantage-card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .advantage-card ul {
            list-style: none;
        }

        .advantage-card li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .advantage-card li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--success);
        }

        /* Security Section */
        .security {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
        }

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

        .security-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .security-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* CTA Section */
        .cta {
            text-align: center;
            padding: 80px 0;
            background-color: white;
        }

        .cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            color: var(--gray);
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 30px;
        }

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

        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-item i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .ma-hero {
                padding: 100px 0 60px;
            }
            
            .ma-hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            
            .ma-hero {
                padding: 140px 0 40px;
            }
            
            .ma-hero h1 {
                font-size: 2.5rem;
            }
            
            .overview-content {
                flex-direction: column;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .cta h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .ma-hero h1 {
                font-size: 2rem;
            }
            
            .ma-hero p {
                font-size: 1rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .cta h2 {
                font-size: 1.8rem;
            }
        }