diff --git a/refund.html b/refund.html index 7d31a86..cd4842c 100644 --- a/refund.html +++ b/refund.html @@ -16,19 +16,19 @@ } .container { - max-width: 800px; + max-width: 1200px; /* Increased max-width for a wider layout */ margin: 0 auto; padding: 40px; background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent background */ box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); border-radius: 20px; text-align: center; - position: relative; /* Required for 3D transformation */ } h1, h2, h3 { color: #333; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + margin-bottom: 15px; } .policy-header { @@ -131,15 +131,44 @@ color: #ffcc00; transform: scale(1.2); /* Icon zoom effect */ } + + .language-selector { + margin-top: 30px; + text-align: center; + } + + .language-selector select { + padding: 10px; + border: 1px solid #ccc; + border-radius: 5px; + font-size: 16px; + cursor: pointer; + } -
+ +