*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    line-height: 1;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    height: 100%;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --main-bg-color: #f3f4f6;
    --main-text-color: #000;
    --low-priority-text-color: #999999;
    --primary-color: #004085;
    --secondary-color: #d9534f;
    --container-width: 1000px;
    --button-max-width: 400px;
    --step-max-width: 600px;
    --button-darker-color: #003366;
    --button-dark-color: #004085;
    --button-color: #0056b3;
    --button-hover-color: #1169c6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 100px);
}

a {
    transition: all 0.5s;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #d6d6d6;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.logo-text {
    display: block;
}

.logo-text .main {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--button-hover-color);
}

.logo-text .sub {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--main-text-color);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--primary-color);
    font-size: 14px;
}

.phone-icon-container {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.phone-icon {
    width: 2.5rem;
    height: auto;
    color: var(--primary-color);
}

.phone-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-number {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.progress-container {
    padding: 20px;
    display: none;
    justify-content: center;f
    margin: 20px auto;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    max-width: var(--step-max-width);
    margin: 0 auto;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.progress-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d6d6d6;
    z-index: 0;
    transform: translateY(-50%);
}

.progress-bar .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.progress-bar .circle.active {
    background-color: var(--button-darker-color) !important;
    border: none !important;
    color: #fff;
}

.progress-bar .circle .iconify {
    display: none;
}

.progress-bar .circle.active .iconify {
    display: block;
}

.progress-bar .circle.current::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--button-darker-color);
    position: absolute;
    animation: pulse 1s linear infinite;
    z-index: 2;
}


.progress-bar .line {
    flex-grow: 1;
    height: 2px;
    background-color: #d6d6d6;
    position: relative;
}

.progress-bar .line-inner {
    height: 1px;
    background-color: var(--button-darker-color);
    width: 0;
    transition: width 0.5s ease;
}

.progress-bar .line-container {
    flex-grow: 1;
    height: 1px;
    position: relative;
}

.progress-bar .line-container.active .line-inner {
    width: 100%;
}

.vertical-line {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 15px;
    width: 2px;
    background-color: #ccc;
    z-index: 0;
    transition: height 0.5s ease;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.1;
    }

    50% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step {
    display: none;
    text-align: center;
    padding: 40px;
    max-width: var(--step-max-width);
    margin: 0 auto;
}

.step.active {
    display: block;
}

.step h1 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.5em;
}

.plan-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    max-width: var(--button-max-width);

    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.plan-options li {
    font-size: 18px;
    margin: 10px 0;
}

.plan-options .iconify {
    color: var(--primary-color);
    margin-right: 10px;
}

input,
button,
a.btn-primary {
    display: block;
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    max-width: var(--button-max-width);
    line-height: 2;
    position: relative;
}

input {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.disclaimer {
    max-width: var(--button-max-width);
    padding: 20px;
    border-radius: 5px;
    border: solid 1px #e9e9e9;
    font-size: 14px;
    margin: 20px auto;
    line-height: 1.4em;
    text-align: center;
    color: var(--low-priority-text-color);

}

.explanation {
    max-width: var(--button-max-width);
    text-align: justify;
    font-size: 14px;
    margin: 20px auto;
    line-height: 1.4em;
    padding: 20px 0;
    color: var(--low-priority-text-color);
}

.explanation a {
    color: var(--primary-color);
    text-decoration: none;
}

.explanation a:hover {
    text-decoration: underline;
}



button,
a.btn-primary {
    background-color: var(--button-darker-color);
    color: #fff;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

button:hover,
a.btn-primary:hover {
    background-color: var(--button-hover-color);
}

button:nth-of-type(2),
a.btn-primary:nth-of-type(2) {
    background-color: var(--button-dark-color);
}

button:nth-of-type(2):hover,
a.btn-primary:nth-of-type(2):hover {
    background-color: var(--button-hover-color);
}

button:nth-of-type(3),
a.btn-primary:nth-of-type(3) {
    background-color: var(--button-color);
}

button:nth-of-type(3):hover,
a.btn-primary:nth-of-type(3):hover {
    background-color: var(--button-hover-color);
}

.btn-call {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: var(--button-max-width);
    text-decoration: none;
}

.btn-call .phone-icon {
    width: 1.5rem;
    height: auto;
    margin-right: 10px;
    margin-left: 0;
}

.phone-icon.white-icon {
    color: #fff;
}




.processing {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;

    text-align: center;
    margin-top: 20px;
    max-width: var(--button-max-width);
    margin: 0 auto;
}

.processing-item {
    display: flex;
    align-items: center;
    justify-items: center;
    margin: 10px 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    position: relative;
    z-index: 1;
}

.processing-item .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.processing-item.active .circle {
    background-color: var(--primary-color);
}

.processing-item.active {
    opacity: 1;
}

.processing p {
    font-size: 18px;
    margin: 0;
    text-align: left;
    margin-left: 10px;
}

.step-call-btn {
    text-align: center;
    padding: 20px 40px;
    background-color: #e6f7ff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    max-width: var(--button-max-width);
    margin: 0 auto;
    /* Center the step-call-btn */
}

.step-call-btn .phone-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-call-btn .phone-icon {
    width: 1.5rem;
    height: auto;
    margin-right: 10px;
}

.footer-links {
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.footer-links a {
    margin: 0 10px;
    color: var(--primary-color);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #ccc;
    margin-top: 20px;
    background-color: #fff;
}

footer p {
    text-align: left;
    color: var(--low-priority-text-color);
    font-size: 12px;
}

.notification-box {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-box p {
    margin: 0;
    font-size: 12px;
}

.notification-box .close-btn {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

@keyframes growLine {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header {
        flex-direction: column;
        padding: 20px;
    }

    /*.logo span {*/
        /*display: none;*/
    /*}*/ 

    .contact-info {
        margin-top: 0;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .header-content {
        padding: 0;
    }

    .phone-text-container {
        font-size: 12px;
    }

    .progress-bar {
        width: 100%;
    }

    .processing {
        align-items: flex-start;
    }

    .step {
        padding: 20px;
    }
}

.phone-icon {
    width: 2.5rem;
    height: auto;
}

.loading-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}