
 /* Reset & Base Styles */
        #Strategy  * { box-sizing: border-box; }
        #Strategy  a { text-decoration: none; color: inherit; }
        #Strategy  button { cursor: pointer; border: none; font-family: inherit; }
        #Strategy  input, #Strategy  select { font-family: inherit; }



/* Strategy Wrapper Layout */
        #Strategy { width: 100%; flex-grow: 1; display: flex; flex-direction: column; }
        
        /* Scoped Styles for Strategy Section */
        #Strategy .main-container {flex-grow: 1;display: flex;align-items: center;justify-content: center;padding: 2.5rem 0rem;}
        #Strategy .card {width: min(1330px , 100%);background-color: #ffffff;border-radius: 1rem;box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);overflow: hidden;border: 1px solid #f3f4f6;position: relative;}
        #Strategy .top-decoration {height: 0rem;background-color: #aa6364;width: 100%;}
        #Strategy .card-content { padding: 1.5rem; }

        /* Typography & Badge */
        #Strategy .text-center { text-align: center; }
        #Strategy .badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px; background-color: #fdf2f2; color: #aa6364; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.75rem; border: 1px solid #fce7e7; }
        #Strategy .title { font-size: 1.5rem; font-weight: 700; color: #111827; line-height: 1.3; margin: 0 0 0.5rem 0; }
        #Strategy .highlight { color: #aa6364; }
        #Strategy .subtitle {color: #6b7280;font-size: 0.875rem;margin: 0;text-align: center;}

        /* Form Elements */
        #Strategy .form-group { margin-bottom: 1.25rem; }
        #Strategy .form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.25rem; }
        #Strategy .required { color: #ef4444; }
        #Strategy .input-wrapper { position: relative; }
        #Strategy .input-icon { position: absolute; left: 0.75rem; top: 0.8rem; width: 1.25rem; height: 1.25rem; color: #9ca3af; pointer-events: none; z-index: 10; }
        #Strategy .form-input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; border-radius: 0.5rem; border: 1px solid #d1d5db; font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; background-color: #fff; }
        #Strategy .form-input:focus { border-color: #aa6364; box-shadow: 0 0 0 3px rgba(170, 99, 100, 0.2); }
        #Strategy .select-chevron { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: #9ca3af; pointer-events: none; transition: transform 0.2s; }
        #Strategy .grid-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

        /* Custom Select Styles */
        #Strategy .custom-select-container { position: relative; }
        #Strategy .custom-select-trigger { width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; border-radius: 0.5rem; border: 1px solid #d1d5db; font-size: 1rem; background-color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: space-between; position: relative; min-height: 2.625rem; transition: border-color 0.2s, box-shadow 0.2s; }
        #Strategy .custom-select-trigger:focus, #Strategy .custom-select-trigger.open { border-color: #aa6364; box-shadow: 0 0 0 3px rgba(170, 99, 100, 0.2); outline: none; }
        #Strategy .custom-select-trigger.open .select-chevron { transform: translateY(-50%) rotate(180deg); }
        #Strategy .custom-select-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #333; }
        #Strategy .custom-select-text.placeholder { color: #9ca3af; }
        
        #Strategy .custom-options { position: absolute; top: 100%; left: 0; right: 0; background-color: #fff; border: 1px solid #d1d5db; border-radius: 0.5rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); margin-top: 0.25rem; z-index: 100; display: none; max-height: 200px; overflow-y: auto; }
        #Strategy .custom-options.show { display: block; animation: fadeIn 0.2s ease-out; }
        #Strategy .custom-option { padding: 0.75rem 1rem; cursor: pointer; transition: background-color 0.1s; font-size: 0.95rem; }
        #Strategy .custom-option:hover { background-color: #fdf2f2; color: #aa6364; }
        #Strategy .custom-option.selected { background-color: #fce7e7; color: #aa6364; font-weight: 500; }

        /* Note Box */
        #Strategy .note-box { background-color: #fefce8; border: 1px solid #fef9c3; border-radius: 0.5rem; padding: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1rem; }
        #Strategy .note-icon { width: 1.25rem; height: 1.25rem; color: #d97706; flex-shrink: 0; margin-top: 0.125rem; }
        #Strategy .note-text { font-size: 0.875rem; color: #b45309; margin: 0; line-height: 1.4; }

        /* Button */
        #Strategy .btn-submit {width: 100%;background-color: #aa6364;color: white;font-weight: 700;padding: 1rem 1.5rem;border-radius: 0.5rem;font-size: 1rem;display: flex;align-items: center;justify-content: center;gap: 0.5rem;transition: all 0.2s;box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);margin-top: 1rem;}
        #Strategy .btn-submit:hover { background-color: #8f5051; transform: translateY(-1px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
        #Strategy .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
        #Strategy .btn-submit *{color:white;}
        /* Success Section */
        #Strategy .success-container {text-align: center;padding: 2rem 0 0;display: none;}
        #Strategy .success-icon-bg { width: 6rem; height: 6rem; background-color: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem auto; }
        #Strategy .success-icon { width: 3rem; height: 3rem; color: #16a34a; }
        #Strategy .success-title {font-size: 1.5rem;font-weight: 700;color: #111827;margin-bottom: 0.75rem;text-align: center;}
        #Strategy .success-desc {color: #4b5563;margin-bottom: 2rem;max-width: 100%;margin-left: auto;margin-right: auto;line-height: 1.6;text-align: center;}
        #Strategy .email-display { font-weight: 700; color: #1f2937; }
        #Strategy .info-box { padding: 1rem; background-color: #f9fafb; border-radius: 0.5rem; border: 1px solid #f3f4f6; font-size: 0.875rem; color: #6b7280; margin-bottom: 1rem; }
        #Strategy .btn-link { color: #aa6364; font-weight: 500; font-size: 0.875rem; background: none; text-decoration: underline; padding: 0.5rem; }
        #Strategy .btn-link:hover { color: #8f5051; }
        #Strategy .info-box *{text-align:center;}
        /* Utilities Scoped */
        #Strategy .hidden { display: none !important; }
        #Strategy .block { display: block !important; }
        #Strategy .fade-in { animation: fadeIn 0.5s ease-in-out; }
        #Strategy .animate-bounce { animation: bounce 1s infinite; }
        #Strategy .animate-spin { animation: spin 1s linear infinite; }

        /* Footer (Global) */
        .footer { text-align: center; width: 100%; padding-bottom: 1rem; font-size: 0.75rem; color: #9ca3af; margin-top: auto; }

        /* Media Queries */
        @media (min-width: 768px) {
            .header-content { justify-content: flex-start; }
            #Strategy .card-content {padding: 3.5rem 2rem;}
            #Strategy .title { font-size: 1.875rem; }
            #Strategy .subtitle { font-size: 1rem; }
            #Strategy .grid-row { grid-template-columns: 1fr 1fr; }
        }

        /* Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
            50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }