            .contact-page-wrapper {
                max-width: 800px;
                margin: 0 auto;
                padding: 20px 16px 40px;
            }

            .contact-section-title {
                font-size: 24px;
                font-weight: 700;
                color: #333;
                text-align: center;
                margin-bottom: 24px;
                padding-bottom: 12px;
                border-bottom: 3px solid #4F3874;
                display: inline-block;
                width: 100%;
            }
            .contact-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
                margin-bottom: 32px;
            }
            .contact-card {
                background: #f7f7f9;
                border-radius: 12px;
                padding: 20px 16px;
                text-align: center;
                text-decoration: none;
                transition: all 0.3s ease;
                border: 2px solid transparent;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .contact-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
                border-color: #4F3874;
            }
            .contact-card .contact-icon {
                font-size: 32px;
                margin-bottom: 8px;
            }
            .contact-card .contact-label {
                font-size: 14px;
                font-weight: 600;
                color: #333;
                margin-bottom: 4px;
            }
            .contact-card .contact-account {
                font-size: 16px;
                font-weight: 700;
                color: #4F3874;
                word-break: break-all;
                font-family: monospace;
            }
            .contact-card .contact-action {
                margin-top: 10px;
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .contact-card .contact-action a,
            .contact-card .contact-action button {
                display: inline-block;
                padding: 6px 18px;
                border-radius: 6px;
                font-size: 13px;
                font-weight: 600;
                text-decoration: none;
                border: none;
                cursor: pointer;
                transition: all 0.2s;
                color: #fff;
                background: #4F3874;
            }
            .contact-card .contact-action a:hover,
            .contact-card .contact-action button:hover {
                transform: translateY(-1px);
                opacity: 0.9;
            }
            .contact-card .contact-action a:active,
            .contact-card .contact-action button:active {
                transform: scale(0.96);
            }
            .contact-card .contact-action .btn-telegram {
                background: #0088cc;
            }
            .contact-card .contact-action .btn-whatsapp {
                background: #25D366;
            }
            .contact-card .contact-action .btn-bat {
                background: #7c3aed;
            }
            .contact-card .contact-action .btn-copied {
                background: #22c55e !important;
                pointer-events: none;
            }

            .about-block {
                background: #fafaff;
                border-radius: 12px;
                padding: 24px 20px;
                margin-bottom: 28px;
                border-left: 4px solid #4F3874;
            }
            .about-block h2 {
                font-size: 20px;
                font-weight: 700;
                color: #333;
                margin-bottom: 10px;
            }
            .about-block p {
                font-size: 15px;
                line-height: 1.8;
                color: #555;
                margin: 0;
            }
            .about-block .highlight {
                color: #4F3874;
                font-weight: 600;
            }

            .faq-block {
                background: #fafaff;
                border-radius: 12px;
                padding: 24px 20px;
                margin-bottom: 28px;
                border-left: 4px solid #7c3aed;
            }
            .faq-block h2 {
                font-size: 20px;
                font-weight: 700;
                color: #333;
                margin-bottom: 10px;
            }
            .faq-block p {
                font-size: 15px;
                line-height: 1.8;
                color: #555;
                margin: 0;
            }
            .faq-block .faq-highlight {
                color: #7c3aed;
                font-weight: 600;
            }
            .faq-block .contact-link {
                color: #4F3874;
                font-weight: 600;
                text-decoration: none;
                border-bottom: 2px solid #4F3874;
                padding-bottom: 1px;
                cursor: pointer;
            }
            .faq-block .contact-link:hover {
                color: #7c3aed;
                border-bottom-color: #7c3aed;
            }

            .download-block {
                background: #fafaff;
                border-radius: 12px;
                padding: 24px 20px;
                margin-bottom: 28px;
                border-left: 4px solid #f59e0b;
            }
            .download-block h2 {
                font-size: 20px;
                font-weight: 700;
                color: #333;
                margin-bottom: 10px;
            }
            .download-block p {
                font-size: 15px;
                line-height: 1.8;
                color: #555;
                margin: 0;
            }
            .download-block .official-link {
                color: #4F3874;
                font-weight: 600;
                text-decoration: none;
                border-bottom: 2px solid #4F3874;
                padding-bottom: 1px;
                word-break: break-all;
            }
            .download-block .official-link:hover {
                color: #7c3aed;
                border-bottom-color: #7c3aed;
            }

            .official-block {
                background: #fafaff;
                border-radius: 12px;
                padding: 24px 20px;
                margin-bottom: 28px;
                border-left: 4px solid #059669;
            }
            .official-block h2 {
                font-size: 20px;
                font-weight: 700;
                color: #333;
                margin-bottom: 10px;
            }
            .official-block p {
                font-size: 15px;
                line-height: 1.8;
                color: #555;
                margin: 0;
            }
            .official-block .official-link {
                color: #4F3874;
                font-weight: 600;
                text-decoration: none;
                border-bottom: 2px solid #4F3874;
                padding-bottom: 1px;
                word-break: break-all;
            }
            .official-block .official-link:hover {
                color: #059669;
                border-bottom-color: #059669;
            }

            @media (max-width: 768px) {
                .contact-page-wrapper {
                    padding: 16px 12px 30px;
                }
                .contact-grid {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 12px;
                }
                .contact-card {
                    padding: 16px 12px;
                }
                .contact-card .contact-icon {
                    font-size: 26px;
                }
                .contact-card .contact-account {
                    font-size: 14px;
                }
                .contact-card .contact-action a,
                .contact-card .contact-action button {
                    padding: 5px 14px;
                    font-size: 12px;
                }
                .about-block,
                .faq-block,
                .download-block,
                .official-block {
                    padding: 18px 16px;
                }
                .about-block h2,
                .faq-block h2,
                .download-block h2,
                .official-block h2 {
                    font-size: 18px;
                }
                .about-block p,
                .faq-block p,
                .download-block p,
                .official-block p {
                    font-size: 14px;
                }
                .contact-section-title {
                    font-size: 20px;
                }
            }
            @media (max-width: 480px) {
                .contact-page-wrapper {
                    padding: 12px 8px 24px;
                }
                .contact-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 10px;
                }
                .contact-card {
                    padding: 14px 10px;
                }
                .contact-card .contact-icon {
                    font-size: 24px;
                }
                .contact-card .contact-account {
                    font-size: 13px;
                }
                .contact-card .contact-action {
                    flex-direction: column;
                    gap: 4px;
                }
                .contact-card .contact-action a,
                .contact-card .contact-action button {
                    padding: 6px 10px;
                    font-size: 12px;
                    width: 100%;
                }
                .about-block,
                .faq-block,
                .download-block,
                .official-block {
                    padding: 14px 12px;
                }
                .about-block h2,
                .faq-block h2,
                .download-block h2,
                .official-block h2 {
                    font-size: 17px;
                }
                .about-block p,
                .faq-block p,
                .download-block p,
                .official-block p {
                    font-size: 13px;
                }
                .contact-section-title {
                    font-size: 18px;
                }
            }