  .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Styles */
        /* Cards Section */
        .cards-section {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 60px;
        }

        .card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .card-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #AD1457;
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .card p {
            color: #666;
            font-size: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            background: #6A1B9A;
            padding: 50px 20px;
            border-radius: 20px;
            margin-bottom: 40px;
        }

        .faq-title {
            text-align: center;
            color: white;
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background-color: #f8f9fa;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        .download-section {
            margin: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
            color: #333;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #6A1B9A;
            margin: 15px auto;
            border-radius: 2px;
        }

        .download-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .download-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 40px 30px;
            text-align: center;
            width: 100%;
            max-width: 500px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .download-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .download-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: #6A1B9A;
        }

        .card-icons {
            font-size: 4rem;
            margin-bottom: 25px;
            color: #AD1457;
        }

        .download-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #333;
        }

        .download-card p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .platforms {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .platform-link {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            padding: 12px 25px;
            border-radius: 12px;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
        }

        .platform-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .platform-icon {
            font-size: 1.8rem;
            margin-right: 10px;
        }

        .apple {
            color: #000;
        }

        .google {
            color: #4285F4;
        }

        .platform-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .platform-text span:first-child {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .platform-text span:last-child {
            font-size: 1.2rem;
        }

        /* Features Section */
        .features-section {
            background: #E1BEE7;
            padding: 60px 20px;
            border-radius: 20px;
            margin: 60px 0;
            color: #f3f4f5;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .card {
                max-width: 100%;
            }

            .faq-question {
                font-size: 1.1rem;
            }
             .download-card {
                padding: 30px 20px;
            }

            .platforms {
                flex-direction: column;
                align-items: center;
            }

            .platform-link {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {

            .card {
                padding: 20px;
            }

            .card-icon {
                font-size: 3rem;
            }

            .faq-section {
                padding: 30px 15px;
            }

            .faq-title {
                font-size: 1.7rem;
            }
            .download-card {
                padding: 25px 15px;
            }

            .card-icons {
                font-size: 3rem;
            }

            .section-title {
                font-size: 1.6rem;
            }
        }