* {
  box-sizing: border-box;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.breadcrumb li {
    flex: 1;
    margin: 0 1px;
    background-color: #e0e0e0;
    border-radius: 2px;
    text-indent: -9999px;
    overflow: hidden;
}

.breadcrumb li.active {
    background-color: rgb(238, 104, 0);
}

.breadcrumb li.completed {
    background-color: #4caf50;
}

header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo {
    height: 60px; /* Adjust size as needed */
    width: auto;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fafafa;
    color: #424242;
    line-height: 1.6;
    position: relative;
}

h1, h2 {
    color: #607d8b;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

h1 {
    margin-top: 80px;
    color: rgb(238, 104, 0);
}

section {
    margin-bottom: 40px;
    padding: 4px 8px;
    background-color: #eff0ff;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

label {
    display: block;
    padding-top: 18px;
    font-weight: 600;
    color: #0F0054;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 0 0 2px 0;
    margin-top: 0;
    border: none;
    border-bottom: 1px solid rgb(238, 104, 0);
    font-size: 16px;
    background-color: transparent;
    transition: border-bottom-width 0.2s ease;
    box-shadow: none;
}

select {
    width: 100%;
    padding: 0 20px 2px 0;
    margin-top: 0;
    border: none;
    border-bottom: 1px solid rgb(238, 104, 0);
    font-size: 16px;
    background-color: transparent;
    transition: border-bottom-width 0.2s ease;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><polygon points="0,0 10,0 5,6" fill="%23ee6800"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px;
}

input:focus, select:focus {
    border-bottom-width: 1px;
    outline: none;
}

option {
    background-color: #eff0ff;
    color: #0F0054;
    padding: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
}

button {
    margin-top: 22px;
    padding: 13px 26px;
    background-color: rgb(238, 104, 0);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #e68900;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.payment-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 32px;
}

.plan-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 180px;
    min-height: 160px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.plan-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: rgb(238, 104, 0);
}

.plan-card input[type="radio"] {
    display: none;
}

.plan-card input[type="radio"]:checked + label {
    background-color: #fff3e0;
    border: 2px solid rgb(238, 104, 0);
}

.plan-card label {
    display: block;
    height: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease, border 0.3s ease;
    cursor: pointer;
}

.plan-card h3 {
    margin: 0 0 10px 0;
    color: #607d8b;
    font-size: 18px;
}

.plan-card p {
    margin: 0;
    color: #757575;
    font-size: 16px;
}
.plan-card .discount, .plan-card .plan-name {
    color: #0f0054;
    text-align: left;
}

.plan-card .plan-name {
    font-size: 14px;
}

.plan-card .amount {
    color: rgb(238, 104, 0);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.plan-card .select-button {
    display: none;
    margin: 10px auto 0;
    padding: 8px 16px;
    background-color: rgb(238, 104, 0);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.plan-card .select-button:hover {
    background-color: #e68900;
}

.plan-card input[type="radio"]:checked + label .select-button {
    display: block;
}

.payment-label {
    font-weight: bold;
    font-size: 18px;
}

@media (min-width: 768px) {
    .plan-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}