Categories: BlogCongress at Work

Facilitating Access to Housing and In-State Tuition, Sanctioning Iran and the Battle Over DHS Funding

5 min read

21st Century ROAD to Housing Act (HR 6644) – As many local governments face the problem of rising affordability and severe housing shortages, this bipartisan bill would update existing housing programs to increase the housing supply, as well as streamline federal regulations that slow construction. Among its provisions, the legislation would authorize a pilot program designed to convert vacant or underused buildings into residential housing, issue grants for infrastructure improvements for utilities and transportation, and include construction of new housing units for low- and moderate-income residents. The legislation was introduced on Dec. 11, 2025, by Rep. French Hill (R-AR). It originally passed in the House on Feb. 9, but the Senate made changes before passing it on March 12. It has returned to the House for a final vote.

Territorial Student Access to Higher Education Act (HR 6472) – This act would amend the Higher Education Act of 1965 to provide for in-state tuition rates for certain residents of Guam, the Commonwealth of the Northern Mariana Islands, American Samoa, and the United States Virgin Islands. The bill would help offset the high cost of attending college on the U.S. mainland, which prohibitively adds thousands of dollars to airfare, housing, and basic living expenses incurred by citizens of U.S. territories. The legislation was introduced by Rep. James Moylan (R-Guam) on Dec. 4, 2025. It passed the House on March 7 and is currently under consideration in the Senate.

Enhanced Iran Sanctions Act of 2025 (HR 1422) – On Feb. 8, 2025, Rep. Michael Lawler (R-NY) introduced this bill to strengthen secondary sanctions on foreign entities (e.g., banks, insurers, pipeline construction and operation facilities) that help process, export, or sell illicit Iranian oil, including for liquified natural gas. The bill lay dormant in the House until late February, when the U.S. launched its attack on Iran. On March 10, the bill was updated to include an interagency work group to develop more sanctions related to Iran and a multinational effort to enforce sanctions. The latest version of the act was passed in the House on March 16; its fate currently lies in the Senate.

Servicemembers’ Credit Monitoring Enhancement Act (S 2074) – The purpose of this bill is to provide free credit monitoring for veterans. Presently, only active duty members can take advantage of this service. The bill was introduced by Sen. Amy Klobuchar (D-MN) on June 12, 2025. It passed unanimously in the Senate on March 5 and is currently under consideration in the House.

Department of Homeland Security Appropriations Act, 2026 (HR 7744) – This is the bill that is currently holding up appropriations for the Department of Homeland Security (DHS) for the fiscal year ending Sept. 30. The bill was introduced by Rep. Tom Cole (R-OK) on March 2 and passed in the House on March 5. However, it has triggered a partial government shutdown and is under heated debate in the Senate. Republicans insist on passing the complete bill with increased funding for national security and border protection. The legislation also includes provisions prohibiting funds for Diversity, Equity and Inclusion and Critical Race Theory programs, as well as abortions and gender-affirming care for ICE detainees. Senate Democrats are seeking to include guardrails that would prohibit ICE agents from wearing masks or entering homes, schools, hospitals, etc., without a judicial warrant.

PAY TSA Act of 2026 – Rep. Nick Langworthy (R-NY) introduced a carve-out bill for DHS on March 16, authorizing specific fees already collected to fund the Transportation Security Administration (TSA) during shutdowns. The bill would direct the Aviation Passenger Security Fee (initiated after the 9/11 terror attacks) to be used to pay TSA agents during any period that TSA appropriations lapse. Airlines currently charge this passenger fee ($5.60 for a one-way trip and up to $11.20 for a round-trip) for flights that originate in the United States. The bill is not expected to pass due to Republican opposition to carving out funding from the general DHS appropriations bill.

End Special Treatment for Congress at Airports Act of 2026 (S 4123) – Sen. John Cornyn (R-TX) introduced this bill on March 17 as a companion bill reflecting stalled appropriations for DHS – and for TSA workers specifically. The bill calls for a ban on Congressional lawmakers’ current preferential status that enables them to sidestep security checkpoint lines at U.S. airports. The ban would require members of Congress to wait in TSA lines along with other passengers. The bill passed in the Senate on March 19, and its fate now lies with the House.

Version 2


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

Facilitating Access to Housing and In-State Tuition, Sanctioning Iran and the Battle Over DHS Funding

April 1, 2026  ·  Blog, Congress at Work

5 min read

21st Century ROAD to Housing Act (HR 6644) – As many local governments face the problem of rising affordability and severe housing shortages, this bipartisan bill would update existing housing programs to increase the housing supply, as well as streamline federal regulations that slow construction. Among its provisions, the legislation would authorize a pilot program designed to convert vacant or underused buildings into residential housing, issue grants for infrastructure improvements for utilities and transportation, and include construction of new housing units for low- and moderate-income residents. The legislation was introduced on Dec. 11, 2025, by Rep. French Hill (R-AR). It originally passed in the House on Feb. 9, but the Senate made changes before passing it on March 12. It has returned to the House for a final vote.

Territorial Student Access to Higher Education Act (HR 6472) – This act would amend the Higher Education Act of 1965 to provide for in-state tuition rates for certain residents of Guam, the Commonwealth of the Northern Mariana Islands, American Samoa, and the United States Virgin Islands. The bill would help offset the high cost of attending college on the U.S. mainland, which prohibitively adds thousands of dollars to airfare, housing, and basic living expenses incurred by citizens of U.S. territories. The legislation was introduced by Rep. James Moylan (R-Guam) on Dec. 4, 2025. It passed the House on March 7 and is currently under consideration in the Senate.

Enhanced Iran Sanctions Act of 2025 (HR 1422) – On Feb. 8, 2025, Rep. Michael Lawler (R-NY) introduced this bill to strengthen secondary sanctions on foreign entities (e.g., banks, insurers, pipeline construction and operation facilities) that help process, export, or sell illicit Iranian oil, including for liquified natural gas. The bill lay dormant in the House until late February, when the U.S. launched its attack on Iran. On March 10, the bill was updated to include an interagency work group to develop more sanctions related to Iran and a multinational effort to enforce sanctions. The latest version of the act was passed in the House on March 16; its fate currently lies in the Senate.

Servicemembers’ Credit Monitoring Enhancement Act (S 2074) – The purpose of this bill is to provide free credit monitoring for veterans. Presently, only active duty members can take advantage of this service. The bill was introduced by Sen. Amy Klobuchar (D-MN) on June 12, 2025. It passed unanimously in the Senate on March 5 and is currently under consideration in the House.

Department of Homeland Security Appropriations Act, 2026 (HR 7744) – This is the bill that is currently holding up appropriations for the Department of Homeland Security (DHS) for the fiscal year ending Sept. 30. The bill was introduced by Rep. Tom Cole (R-OK) on March 2 and passed in the House on March 5. However, it has triggered a partial government shutdown and is under heated debate in the Senate. Republicans insist on passing the complete bill with increased funding for national security and border protection. The legislation also includes provisions prohibiting funds for Diversity, Equity and Inclusion and Critical Race Theory programs, as well as abortions and gender-affirming care for ICE detainees. Senate Democrats are seeking to include guardrails that would prohibit ICE agents from wearing masks or entering homes, schools, hospitals, etc., without a judicial warrant.

PAY TSA Act of 2026 – Rep. Nick Langworthy (R-NY) introduced a carve-out bill for DHS on March 16, authorizing specific fees already collected to fund the Transportation Security Administration (TSA) during shutdowns. The bill would direct the Aviation Passenger Security Fee (initiated after the 9/11 terror attacks) to be used to pay TSA agents during any period that TSA appropriations lapse. Airlines currently charge this passenger fee ($5.60 for a one-way trip and up to $11.20 for a round-trip) for flights that originate in the United States. The bill is not expected to pass due to Republican opposition to carving out funding from the general DHS appropriations bill.

End Special Treatment for Congress at Airports Act of 2026 (S 4123) – Sen. John Cornyn (R-TX) introduced this bill on March 17 as a companion bill reflecting stalled appropriations for DHS – and for TSA workers specifically. The bill calls for a ban on Congressional lawmakers’ current preferential status that enables them to sidestep security checkpoint lines at U.S. airports. The ban would require members of Congress to wait in TSA lines along with other passengers. The bill passed in the Senate on March 19, and its fate now lies with the House.

Version 2


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

Service2Client

Share
Published by
Service2Client