 /* Header Styles */
        .header {
            background: linear-gradient(135deg, #1B5E20, #2E7D32);
            color: white;
            padding: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1001;
        }

        .logo a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Desktop Navigation */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .nav-links a:hover, .nav-links a.active {
            background: rgba(255,255,255,0.2);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            transition: transform 0.3s;
        }

        .mobile-menu-btn:hover {
            transform: scale(1.05);
        }

        /* Mobile Dropdown Menu */
        .mobile-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #1B5E20, #2E7D32);
            flex-direction: column;
            padding: 1rem;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            border-top: 1px solid rgba(255,255,255,0.1);
            z-index: 1000;
            animation: slideDown 0.3s ease;
        }

        .mobile-dropdown a {
            color: white;
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
        }

        .mobile-dropdown a i {
            width: 24px;
            font-size: 1.1rem;
        }

        .mobile-dropdown a:hover, .mobile-dropdown a.active {
            background: rgba(255,255,255,0.2);
            transform: translateX(5px);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .contact-hero {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-hero h1 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .contact-hero p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Tabs */
        .tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 1rem;
        }

        .tab-btn {
            padding: 0.75rem 1.5rem;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.3s;
            color: #666;
        }

        .tab-btn:hover {
            background: #f0f0f0;
        }

        .tab-btn.active {
            background: #2E7D32;
            color: white;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
        }

        /* Payment Grid */
        .payment-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 2rem;
        }

        /* Contact Info Cards */
        .contact-info, .payment-info {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .contact-info h3, .payment-info h3 {
            color: #333;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .info-card {
            margin-bottom: 2rem;
        }

        .info-card .icon {
            width: 50px;
            height: 50px;
            background: #e8f5e9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .info-card .icon i {
            font-size: 1.5rem;
            color: #2E7D32;
        }

        .info-card h4 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .info-card p {
            color: #666;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .info-card a {
            color: #2E7D32;
            text-decoration: none;
        }

        .info-card a:hover {
            text-decoration: underline;
        }

        .business-hours {
            border-top: 1px solid #eee;
            padding-top: 1.5rem;
            margin-top: 1rem;
        }

        /* Payment Method Cards */
        .payment-methods {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .payment-method-card {
            flex: 1;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
        }

        .payment-method-card:hover {
            border-color: #2E7D32;
            transform: translateY(-2px);
        }

        .payment-method-card.selected {
            border-color: #2E7D32;
            background: #e8f5e9;
        }

        .payment-method-card i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .payment-method-card .fa-cc-visa { color: #1a1f71; }
        .payment-method-card .fa-cc-mastercard { color: #eb001b; }
        .payment-method-card .fa-cc-amex { color: #006fcf; }
        .payment-method-card .fa-paypal { color: #003087; }
        .payment-method-card .fa-square { color: #00d632; }

        .payment-method-card span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Payment Form */
        .payment-form, .contact-form {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .payment-form h3, .contact-form h3 {
            color: #333;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #555;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2E7D32;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .card-input-wrapper {
            position: relative;
        }

        .card-input-wrapper i {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 1.2rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .btn-primary {
            background: #2E7D32;
            color: white;
        }

        .btn-primary:hover {
            background: #1B5E20;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #0070ba;
            color: white;
        }

        .btn-secondary:hover {
            background: #005c9e;
            transform: translateY(-2px);
        }

        .btn-cashapp {
            background: #00d632;
            color: #000;
        }

        .btn-cashapp:hover {
            background: #00b828;
            transform: translateY(-2px);
        }

        /* Alert */
        .alert {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            animation: slideIn 0.3s;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .alert-info {
            background: #d1ecf1;
            color: #0c5460;
            border: 1px solid #bee5eb;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* FAQ Preview */
        .faq-preview {
            margin-top: 3rem;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
        }

        .faq-preview h3 {
            margin-bottom: 1rem;
            color: #333;
        }

        .faq-preview p {
            color: #666;
            margin-bottom: 1rem;
        }

        .faq-preview .btn {
            width: auto;
            display: inline-block;
            background: transparent;
            border: 2px solid #2E7D32;
            color: #2E7D32;
        }

        .faq-preview .btn:hover {
            background: #2E7D32;
            color: white;
        }

        /* Price Display */
        .price-display {
            background: #f5f5f5;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .price-display .amount {
            font-size: 2rem;
            font-weight: bold;
            color: #2E7D32;
        }

        .price-display .currency {
            font-size: 1.2rem;
        }

        /* Payment Summary */
        .payment-summary {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-dropdown.show {
                display: flex;
            }
            
            .container {
                padding: 1rem;
                margin: 1rem auto;
            }
            
            .contact-hero h1 {
                font-size: 1.8rem;
            }
            
            .contact-grid, .payment-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-info, .payment-info {
                order: 2;
            }
            
            .contact-form, .payment-form {
                order: 1;
            }
            
            .payment-methods {
                flex-direction: column;
            }
            
            .tabs {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .tab-btn {
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .contact-info, .contact-form, .payment-info, .payment-form {
                padding: 1.5rem;
            }
        }