/* Custom Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
            color: #334155;
            line-height: 1.6;
        }

        .main-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 26px;
            font-weight: 600;
            color: #0f172a;
            text-decoration: none;
        }
        .logo img {
            margin-right: 12px;
            width: 60px;
        }

        .logo:hover, .logo:focus, .logo {
            text-decoration: none;
            text-decoration: none;
            color: #0f172a;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        

        /* Content Styles */
        .content-section {
            flex: 1;
            padding: 80px 0;
            display: flex;
            align-items: center;
        }

        .hero-content {
           
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
             text-align: center;
            font-size: 3.5rem;
            font-weight: 500;
            color: #0f172a;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .hero-description {
            font-size: 1.8rem;
            color: #526075;
            line-height: 1.6;
            margin-bottom: 30px;
            font-weight: 400;
        }
        .subheading {
            text-align: center;
            font-size: 2rem;
            color: #3a485c;
            margin-bottom: 20px;
            font-weight: 500;
        }
        /* Action Section */
        .action-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .action-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 10px;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
        }

        .checkbox-inputs {
    display: none;
}

/* Custom checkbox base */
.checkbox-custom {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid #999;
    border-radius: 4px;
    background-color: #fff;
    vertical-align: middle;
    margin: -4px 8px 0px 0px;
    position: relative;
    transition: all 0.2s ease;
}

/* Checkmark when checkbox is checked */
.checkbox-inputs:checked + label .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0px;
    width: 8px;
    height: 16px;
    border: solid #007bff;
    border: solid #007bff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
label{
    font-size: 16px;
}
/* Hover state */
label:hover .checkbox-custom {
    border-color: #007bff;
}

/* Optional: Change background when checked */
.checkbox-inputs:checked + label .checkbox-custom {
    background-color: #e6f0ff;
    border-color: #007bff;
}

        /* Select Dropdown Styles */
        .select-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .select-dropdown {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            color: #334155;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            min-width: 100px;
            height: 56px;
        }
        
       
        .select-dropdown:hover {
            border-color: #06b6d4;
            background: rgba(6, 182, 212, 0.05);
        }

        .select-dropdown:focus {
            outline: none;
            border-color: #06b6d4;
            box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
        }

        .select-arrow {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .select-container:hover .select-arrow {
            color: #06b6d4;
        }

        /* Search Box */
        .search-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin-top: 30px;
        }

        .search-input {
            width: 100%;
            padding: 16px 120px 16px 20px !important;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: white;
            
        }

        .search-input:focus {
            outline: none;
            border-color: #06b6d4;
            box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
        }

        .search-input::placeholder {
            color: #94a3b8;
        }
        .ok-button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
        }

        .flag-option {
            display: flex;
            align-items: center;
        }
        .flag-option img {
            width: 20px;
            height: 15px;
            margin-right: 10px;
        }
        .clist{
            border: 0px solid transparent !important;
            border-bottom: 1px solid #e2e8f0 !important;
            display: block;
            height: 40px !important;
            background: transparent !important;
            padding: 5px;
            margin-top: -8px;
            width: 100%;
        }
        .clist:active, .clist:focus {
            outline: none;
        }
        .auto-margin {
            margin: auto;
            float: none;
        }
        .num-container{
            background: #FFFFFF;
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
            border-radius: 20px;
        }
        .result-container{
            margin-top: 20px;
            text-align: center;
            background: #333333;
            max-width: 600px;
            margin: 20px auto;
            padding: 10px;
            border-radius: 10px;
            display: none;
        }
        .format {
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 5px;
            color: #FFFFFF;
            word-wrap: break-word;
        }
        .numText {
            color: #777;
            font-size: 16px;
            color: #ebebeb;
        }
        .flags {
            width: 20px;
            height: auto;
            margin-right: 10px;
            border: 1px solid #e2e8f0;
            vertical-align: middle;
        }
        /* Footer */
        .footer {
            background: rgba(255, 255, 255, 0.8);
            border-top: 1px solid rgba(226, 232, 240, 0.8);
            padding: 20px 0;
            text-align: center;
            color: #64748b;
            font-size: 14px;
        }

        .logo-holder{
            float: left;
        }
        .menu{
            float: right;
            margin: 15px 0 0 0;
        }
        .menu a{
            font-size: 1.8rem;
            color: #333333;
            margin: 0 0 0 15px;
            font-weight: 600;
        }
        .menu a:hover, .menu a:focus, .menu a:active{
            text-decoration: none;
            outline: none;
            color: #03adcc;
        }
        .menu a.active{
            color: #03adcc;
        }
        #contact{
            max-width: 600px;
            margin: 0 auto;
        }
        #contact .form-control{
            border: 1px solid #CCCCCC;
            border-radius: 0px;
            font-size: 16px;
        }
        #contact .form-control:focus{
            border-color: #8d8d8d;
            box-shadow: none;
        }
        #contact input[type="text"],
        #contact input[type="email"]{
            height: 45px;
        }
        .error{
            color: #f12a2a;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .main-container{
               
                display: inherit; 
            }
            .content-section {
                padding: 20px;
                
                display: inherit;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-description {
                font-size: 2rem;
            }
            .action-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn-claim,
            .btn-options {
                width: 100%;
                justify-content: center;
            }

            .radio-label,
            .select-dropdown {
                width: 100%;
                justify-content: center;
            }
            .checkbox-inputs{
                margin-bottom: 200px;
            }

            .logo-holder{
                float: left;
                width: 100%;
            }
            .menu{
                float: left;
                margin: 15px 0 0 0;
            }
            #contact{
                max-width: 800px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 10px 0;
            }
        }

      