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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }


        /* Hero Banner */

        .contact-cta-btn {
            background-color: white;
            color: #5a5047;
            padding: 16px 40px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Navigation */
        nav {
            background-color: #5a5047;
            padding: 0 60px 30px;
            display: flex;
            gap: 80px;
            justify-content: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: opacity 0.3s ease;
        }

        nav a:hover {
            opacity: 0.7;
        }

        /* Main Content */
        main {
            padding: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .support-section {
            background: white;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .support-section h2 {
            color: #5a5047;
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #5a5047;
        }

        .support-section p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .faq-item {
            margin: 20px 0;
            padding: 15px;
            background-color: #f9f9f9;
            border-left: 4px solid #5a5047;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .faq-item:hover {
            background-color: #f0f0f0;
        }

        .faq-item h3 {
            color: #5a5047;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .faq-answer {
            display: none;
            color: #666;
            margin-top: 10px;
            line-height: 1.6;
        }

        .faq-answer.active {
            display: block;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #5a5047;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 14px;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background-color: #5a5047;
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: opacity 0.3s ease;
            align-self: flex-start;
        }

        .submit-btn:hover {
            opacity: 0.85;
        }
        /* Responsive */
        @media (max-width: 768px) {
           main{
                padding-left: 20px;
                padding-right: 20px;
            }

            .hero-banner {
                padding: 40px 20px;
            }

            nav {
                flex-direction: column;
                gap: 20px;
            }

            header h1 {
                font-size: 24px;
            }

            .hero-banner h2 {
                font-size: 22px;
            }
        }