TAX ID / EIN Application
/* ========================================================= RCCS EIN / FEDERAL TAX ID APPLICATION SERVICE Rosenthal Community Care Services LLC =================================== ====================== */ #rccs-ein-service { --rccs-navy: #11164a; --rccs-deep: #0f172a; --rccs-olive: #556b2f; --rccs-olive-dark: #435524; --rccs-olive-soft: #eef1e5; --rccs-gold: #b59b5b; --rccs-gold-soft: #e8dcc0; --rccs-cream: #f7f2e8; --rccs-cream-2: #fbf8f1; --rccs-white: #ffffff; --rccs-ink: #1f2933; --rccs-muted: #667085; --rccs-border: rgba(17,22,74,.13); --rccs-shadow: 0 18px 45px rgba(17,22,74,.10); --rccs-soft-shadow: 0 10px 28px rgba(17,22,74,.07); width: 100%; max-width: 100%; margin: 30px 0 0; overflow-x: hidden; background: radial-gradient( circle at top left, rgba(85,107,47,.09), transparent 28% ), radial-gradient( circle at top right, rgba(17,22,74,.07), transparent 32% ), linear-gradient( 180deg, #ffffff 0%, var(--rccs-cream-2) 48%, #ffffff 100% ); color: var(--rccs-ink); font-family: inherit; line-height: 1.7; } /* Full-width layout activates after the script moves this custom description below Shopify's main product grid. */ #rccs-ein-service.rccs-fullwidth-mounted { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-top: 48px; } #rccs-ein-service * { box-sizing: border-box; } #rccs-ein-service .rccs-wrap { width: min( 1220px, calc(100% - 40px) ); margin: 0 auto; } /* ========================================================= ANIMATION ========================================================= */ #rccs-ein-service .rccs-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; } #rccs-ein-service .rccs-reveal.rccs-visible { opacity: 1; transform: translateY(0); } /* ========================================================= HERO ========================================================= */ #rccs-ein-service .rccs-hero-section { padding: 32px 0 20px; } #rccs-ein-service .rccs-hero { position: relative; overflow: hidden; padding: 58px 48px; border-radius: 32px; background: radial-gradient( circle at 89% 12%, rgba(181,155,91,.24), transparent 29% ), radial-gradient( circle at 8% 92%, rgba(85,107,47,.20), transparent 31% ), linear-gradient( 135deg, var(--rccs-deep), var(--rccs-navy) ); color: #ffffff; box-shadow: 0 24px 60px rgba(17,22,74,.19); } #rccs-ein-service .rccs-hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient( 90deg, var(--rccs-gold), #dcc792, var(--rccs-olive), var(--rccs-gold) ); } #rccs-ein-service .rccs-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.09); color: #f6eedc; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; } #rccs-ein-service .rccs-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--rccs-gold); } #rccs-ein-service .rccs-hero h1 { max-width: 990px; margin: 0 0 18px; color: #ffffff; font-size: clamp( 36px, 5vw, 60px ); line-height: 1.02; letter-spacing: -.05em; } #rccs-ein-service .rccs-hero p { max-width: 940px; margin: 0; color: rgba(255,255,255,.82); font-size: clamp( 16px, 1.7vw, 19px ); line-height: 1.7; } #rccs-ein-service .rccs-hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; } #rccs-ein-service .rccs-hero-tag { padding: 9px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.09); color: #ffffff; font-size: 12px; font-weight: 800; } /* ========================================================= PRICE / SNAPSHOT ========================================================= */ #rccs-ein-service .rccs-snapshot-section { padding: 18px 0 20px; } #rccs-ein-service .rccs-snapshot-grid { display: grid; grid-template-columns: repeat( 3, minmax(0,1fr) ); gap: 16px; } #rccs-ein-service .rccs-snapshot-card { position: relative; min-height: 200px; padding: 28px; border: 1px solid var(--rccs-border); border-radius: 24px; background: #ffffff; box-shadow: var(--rccs-soft-shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; } #rccs-ein-service .rccs-snapshot-card:hover { transform: translateY(-5px); border-color: rgba(85,107,47,.30); box-shadow: var(--rccs-shadow); } #rccs-ein-service .rccs-snapshot-card.price { background: linear-gradient( 145deg, #ffffff, var(--rccs-cream-2) ); } #rccs-ein-service .rccs-snapshot-card.time { background: linear-gradient( 145deg, var(--rccs-olive-soft), #ffffff ); } #rccs-ein-service .rccs-snapshot-card.irs { background: linear-gradient( 135deg, var(--rccs-navy), #1b225f ); color: #ffffff; } #rccs-ein-service .rccs-snapshot-label { display: block; margin-bottom: 10px; color: var(--rccs-muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; } #rccs-ein-service .irs .rccs-snapshot-label { color: rgba(255,255,255,.62); } #rccs-ein-service .rccs-snapshot-big { display: block; color: var(--rccs-navy); font-size: clamp( 36px, 4.5vw, 55px ); font-weight: 950; line-height: 1; letter-spacing: -.05em; } #rccs-ein-service .irs .rccs-snapshot-big { color: #ffffff; } #rccs-ein-service .rccs-snapshot-copy { display: block; margin-top: 12px; color: var(--rccs-muted); font-size: 13.5px; line-height: 1.55; } #rccs-ein-service .irs .rccs-snapshot-copy { color: rgba(255,255,255,.72); } /* ========================================================= INTRO ========================================================= */ #rccs-ein-service .rccs-section { padding: 58px 0; } #rccs-ein-service .rccs-section-heading { max-width: 900px; margin-bottom: 32px; } #rccs-ein-service .rccs-section-heading h2 { margin: 0 0 12px; color: var(--rccs-navy); font-size: clamp( 29px, 4vw, 45px ); line-height: 1.08; letter-spacing: -.04em; } #rccs-ein-service .rccs-section-heading p { margin: 0; color: var(--rccs-muted); font-size: 16px; line-height: 1.7; } /* ========================================================= SERVICE CARDS ========================================================= */ #rccs-ein-service .rccs-service-grid { display: grid; grid-template-columns: repeat( 3, minmax(0,1fr) ); gap: 16px; } #rccs-ein-service .rccs-service-card { position: relative; min-height: 195px; padding: 24px; border: 1px solid var(--rccs-border); border-radius: 22px; background: #ffffff; box-shadow: var(--rccs-soft-shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; } #rccs-ein-service .rccs-service-card:hover { transform: translateY(-5px); border-color: rgba(85,107,47,.28); box-shadow: var(--rccs-shadow); } #rccs-ein-service .rccs-service-card::before { content: ""; display: block; width: 42px; height: 4px; margin-bottom: 15px; border-radius: 10px; background: var(--rccs-gold); } #rccs-ein-service .rccs-service-card:nth-child(even)::before { background: var(--rccs-olive); } #rccs-ein-service .rccs-service-card strong { display: block; margin-bottom: 8px; color: var(--rccs-navy); font-size: 18px; line-height: 1.28; } #rccs-ein-service .rccs-service-card span { color: var(--rccs-muted); font-size: 14px; line-height: 1.6; } /* ========================================================= HOW IT WORKS ========================================================= */ #rccs-ein-service .rccs-process-panel { padding: 42px; border: 1px solid rgba(181,155,91,.22); border-radius: 29px; background: linear-gradient( 135deg, var(--rccs-cream), #ffffff ); box-shadow: var(--rccs-soft-shadow); } #rccs-ein-service .rccs-process-panel h2 { margin: 0 0 10px; color: var(--rccs-navy); font-size: clamp( 29px, 4vw, 43px ); line-height: 1.08; } #rccs-ein-service .rccs-process-intro { max-width: 850px; margin: 0 0 28px; color: var(--rccs-muted); font-size: 15px; } #rccs-ein-service .rccs-steps { display: grid; grid-template-columns: repeat( 4, minmax(0,1fr) ); gap: 14px; } #rccs-ein-service .rccs-step { min-height: 190px; padding: 22px; border: 1px solid var(--rccs-border); border-radius: 20px; background: rgba(255,255,255,.78); } #rccs-ein-service .rccs-step-number { display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 35px; margin-bottom: 13px; border-radius: 50%; background: var(--rccs-navy); color: #ffffff; font-size: 12px; font-weight: 900; } #rccs-ein-service .rccs-step strong { display: block; margin-bottom: 7px; color: var(--rccs-navy); font-size: 16px; } #rccs-ein-service .rccs-step p { margin: 0; color: var(--rccs-muted); font-size: 13px; line-height: 1.6; } /* ========================================================= WHY RCCS ========================================================= */ #rccs-ein-service .rccs-value-section { padding: 10px 0 64px; } #rccs-ein-service .rccs-value-panel { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); gap: 34px; align-items: center; padding: 44px; border-radius: 30px; background: radial-gradient( circle at top right, rgba(181,155,91,.22), transparent 31% ), linear-gradient( 135deg, var(--rccs-deep), var(--rccs-navy) ); color: #ffffff; box-shadow: var(--rccs-shadow); } #rccs-ein-service .rccs-value-panel h2 { margin: 0 0 12px; color: #ffffff; font-size: clamp( 30px, 4vw, 46px ); line-height: 1.08; letter-spacing: -.04em; } #rccs-ein-service .rccs-value-panel p { margin: 0; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.7; } #rccs-ein-service .rccs-price-box { padding: 29px; border: 1px solid rgba(255,255,255,.14); border-radius: 23px; background: rgba(255,255,255,.08); text-align: center; } #rccs-ein-service .rccs-price-box span { display: block; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; } #rccs-ein-service .rccs-price-box strong { display: block; margin: 8px 0; color: #ffffff; font-size: 48px; line-height: 1; font-weight: 950; } #rccs-ein-service .rccs-price-box p { font-size: 12px; } /* ========================================================= IMPORTANT NOTES ========================================================= */ #rccs-ein-service .rccs-important-grid { display: grid; grid-template-columns: repeat( 2, minmax(0,1fr) ); gap: 18px; } #rccs-ein-service .rccs-important-card { padding: 30px; border: 1px solid var(--rccs-border); border-radius: 24px; background: #ffffff; box-shadow: var(--rccs-soft-shadow); } #rccs-ein-service .rccs-important-card h3 { margin: 0 0 9px; color: var(--rccs-navy); font-size: 21px; } #rccs-ein-service .rccs-important-card p { margin: 0; color: var(--rccs-muted); font-size: 14px; line-height: 1.65; } /* ========================================================= NON-REFUNDABLE CALLOUT ========================================================= */ #rccs-ein-service .rccs-policy-section { padding: 12px 0 62px; } #rccs-ein-service .rccs-policy { position: relative; overflow: hidden; padding: 32px 34px; border: 1px solid rgba(181,155,91,.30); border-radius: 24px; background: linear-gradient( 135deg, #fffaf0, #ffffff ); box-shadow: var(--rccs-soft-shadow); } #rccs-ein-service .rccs-policy::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--rccs-gold); } #rccs-ein-service .rccs-policy h3 { margin: 0 0 7px; color: var(--rccs-navy); font-size: 21px; } #rccs-ein-service .rccs-policy p { margin: 0; color: var(--rccs-muted); font-size: 14px; } /* ========================================================= DISCLAIMER ========================================================= */ #rccs-ein-service .rccs-disclaimer-section { padding: 20px 0 66px; } #rccs-ein-service .rccs-disclaimer { padding: 26px 28px; border: 1px solid #e2e2e7; border-radius: 19px; background: #f5f5f7; color: #5d5f6b; font-size: 12.5px; line-height: 1.7; } #rccs-ein-service .rccs-disclaimer strong { color: #3f4050; } /* ========================================================= RESPONSIVE ========================================================= */ @media (max-width: 1000px) { #rccs-ein-service .rccs-snapshot-grid, #rccs-ein-service .rccs-service-grid { grid-template-columns: repeat( 2, minmax(0,1fr) ); } #rccs-ein-service .rccs-steps { grid-template-columns: repeat( 2, minmax(0,1fr) ); } #rccs-ein-service .rccs-value-panel { grid-template-columns: 1fr; } } @media (max-width: 740px) { #rccs-ein-service .rccs-wrap { width: min( 100% - 24px, 1220px ); } #rccs-ein-service .rccs-hero { padding: 37px 23px; border-radius: 27px; } #rccs-ein-service .rccs-snapshot-grid, #rccs-ein-service .rccs-service-grid, #rccs-ein-service .rccs-steps, #rccs-ein-service .rccs-important-grid { grid-template-columns: 1fr; } #rccs-ein-service .rccs-process-panel, #rccs-ein-service .rccs-value-panel, #rccs-ein-service .rccs-policy { padding: 28px 21px; } } @media (prefers-reduced-motion: reduce) { #rccs-ein-service *, #rccs-ein-service *::before, #rccs-ein-service *::after { animation: none !important; transition: none !important; } #rccs-ein-service .rccs-reveal { opacity: 1; transform: none; } } Business Formation Support EIN / Federal Tax ID Application Assistance Let Rosenthal Community Care Services LLC handle the administrative work involved in preparing and submitting your Employer Identification Number application. We help organize the required information, review your submission details, and assist with the application process so you can stay focused on building your business. $49.99 RCCS Service Fee Target Processing Within 2 Business Days Federal EIN / Tax ID Assistance RCCS Professional Service $49.99 Administrative preparation, application assistance, submission support, and delivery of available IRS confirmation documentation. RCCS Processing Target 2 Business Days Our target after RCCS receives complete and accurate information and any required authorization from you. IRS Government Fee $0 The IRS does not charge a government application fee to obtain an EIN. The $49.99 price is the RCCS professional service fee. Let Us Handle the Application Details An Employer Identification Number, commonly called an EIN or Federal Tax ID, is used by the IRS to identify many businesses and other entities for federal tax administration. RCCS provides administrative assistance for business owners who would rather have someone help organize and process the application instead of navigating it alone. Information Review We review the information you submit through our questionnaire and identify obvious missing items before proceeding with the application. Application Preparation RCCS organizes the business and responsible-party information needed for the EIN application process. Application Assistance We assist with submitting the EIN request using the information and authorization provided by the client. Follow-Up for Missing Information If information is incomplete or clarification is needed, RCCS may contact you by email or telephone before proceeding. EIN Confirmation When an EIN is successfully issued and confirmation documentation is available to RCCS, we will forward the applicable IRS confirmation documentation to you. Administrative Convenience Spend less time navigating an unfamiliar government application and more time focusing on your business. How It Works Once you purchase the service, RCCS will guide you through the information-gathering and application process. 1 Purchase the Service Complete your $49.99 RCCS EIN Application Assistance purchase. 2 Complete Your Questionnaire You will receive an email containing a link to provide the business, ownership, and responsible-party information needed for the application. 3 Review & Authorization RCCS reviews the information submitted and obtains any additional information or authorization required before proceeding. 4 Application & Confirmation RCCS assists with the application process and, when successfully issued and available, sends you the applicable IRS EIN confirmation documentation. Why Pay RCCS If the IRS Issues EINs for Free? Because the $49.99 is not a government fee for the EIN. It is the RCCS professional service fee for helping you gather the correct information, review the application details, assist with the submission process, follow up when information is missing, and provide the available confirmation documentation afterward. You are paying for convenience and administrative support so you do not have to navigate the process alone. RCCS Professional Service $49.99 IRS EIN government application fee: $0 Important Before We Apply Your Business Information Must Be Accurate RCCS relies on the information you provide. Incorrect legal names, addresses, entity information, responsible-party information, or other inaccurate responses may delay or prevent successful processing. Please review your questionnaire carefully. Authorization May Be Required When RCCS is assisting as a third-party designee, the client may be required to provide signed authorization or other documentation before RCCS can act on the client's behalf. Form Your Legal Entity First If you are obtaining an EIN for an LLC, corporation, partnership, or another entity formed under state law, the entity generally should be legally formed before applying for its EIN. IRS Decisions Remain With the IRS RCCS can assist with the administrative process, but the IRS determines whether an EIN is issued, whether additional information is required, and what processing method or timing applies. Important Refund Policy This service becomes non-refundable once an EIN has been successfully generated or issued by the IRS through the RCCS application process. Because the requested service has been completed at that point, a refund will not be provided after successful EIN issuance. Important Service Disclosure: Rosenthal Community Care Services LLC is a private, independent administrative and business support company. RCCS is not the Internal Revenue Service, U.S. Department of the Treasury, a government agency, law firm, accounting firm, or tax advisory firm. An Employer Identification Number may be obtained directly from the Internal Revenue Service without paying an IRS application fee. Customers are not required to use RCCS or any third-party service to obtain an EIN. The $49.99 charge on this page is the professional service fee charged by Rosenthal Community Care Services LLC for administrative assistance, information review, application preparation, submission assistance, follow-up, and delivery of available confirmation documentation. RCCS's target turnaround is within two business days after all complete and accurate client information and any required authorization have been received. This is an RCCS processing target and is not a guarantee of IRS processing or issuance time. RCCS does not guarantee issuance of an EIN or any particular IRS determination. Final EIN issuance, eligibility, processing methods, processing time, and requests for additional information remain within the authority and discretion of the Internal Revenue Service.