#new-homepage .container {
    max-width: 704px;
    padding: 0;
}

#new-homepage .hero {
    background-color: #fff;
    padding-top: 56px;
    position: relative;
    overflow: hidden;
}

#new-homepage .hero-content {
    text-align: center;
    max-width: 544px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: #1f1f1f;
}

#new-homepage .hero-content p {
    margin: 0 auto 16px;
}

#new-homepage .hero h2 {
    font-size: 48px;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    line-height: 48px;
    margin-bottom: 16px;
    z-index: 100;
    position: relative;
}

#new-homepage .hero p {
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
    z-index: 100;
    position: relative;
}

#new-homepage .subheader {
    margin-top: 56px;
}

#new-homepage .subheader #subheader-title {
    text-align: center;
    font-size: 28px;
    line-height: 24px;
    font-family: 'DIN Round Pro Bold', arial, sans-serif;
    margin-bottom: 16px;
}

#new-homepage .subheader #subheader-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px !important;
}

#new-homepage .hero-banner {
    width: 1024px;
    position: relative;
    margin: 0 auto;
}

@media (max-width: 992px) {
    #new-homepage .hero h2 {
        font-size: 32px;
    }

    #new-homepage .hero {
        background-color: #fff;
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

    #new-homepage .hero-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    #new-homepage .container {
        padding: 0 24px;
    }

    #new-homepage .hero {
        display: none;
    }

    #new-homepage .hero-mobile {
        display: block;
        margin-bottom: 24px;
    }

    #new-homepage .hero-mobile h2 {
        font-size: 32px;
        font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
        line-height: 36px;
        margin-bottom: 24px;
    }

    #new-homepage .hero-mobile p {
        font-size: 21px;
        font-weight: 400;
        line-height: 24px;
    }
}

#new-homepage section.contents {
    max-width: 850px;
}

.plans-container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 0px;
    transition: all 0.4s ease;
    flex-direction: row;
}

.plan-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 266px;
    padding: 40px 24px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.plan-card.expanded {
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.plan-name {
    display: inline-block;
    padding: 4px 8px;
    margin-bottom: 30px;
    max-width: 100px;
    border-radius: 4px;
    text-align: center;
}

.plan-name.black {
    background-color: #1F1F1F;
}

.plan-name.orange {
    background-color: #FF9E1B;
}

.plan-name p {
    color: #ffffff;
    font-size: 12px;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

.plan-data {
    font-size: 51px;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    color: #FF9E1B;
    margin-bottom: 40px;
}

.plan-features {
    margin-bottom: 35px;
    color: #1f1f1f;
}

.feature {
    margin-bottom: 10px;
}

.feature i {
    color: #FF9E1B;
    margin-right: 10px;
    font-size: 14px;
}

.feature p,
.promo p {
    line-height: 20px;
    font-size: 14px;
}

.promo p {
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

.price {
    display: flex;
    font-size: 38px;
    line-height: 1.2;
    color: #1f1f1f;
    margin-bottom: 20px;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

.signup-btn {
    background: #FF9E1B;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    margin-bottom: 15px;
}

.signup-btn:hover {
    background: #e58e18;
    transform: translateY(-2px);
}

.toggle-btn {
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    color: #1f1f1f;
    text-align: center;
    margin-top: 14px;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    transition: all 0.3s;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.toggle-btn i {
    margin-left: 4px;
    color: #FF9E1B;
    transition: transform 0.3s;
}

.expandable-content {
    position: absolute;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0 0 15px 15px;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.expandable-content.show {
    max-height: 1000px;
    padding: 0 30px 30px;
    margin-top: 17px;
}

.expanded-features {
    margin-top: 10px;
}

.feature-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
}

.feature-item ul {
    line-height: 16px;
    padding-inline-start: 12px;
    margin: 0;
    list-style: none;
}

.feature-item ul li {
    float: left;
    clear: both;
    color: #1f1f1f;
    font-family: 'DIN Round Pro', arial, sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 8px;
    list-style-image: url('../resources/images/svg/check.svg');
}

.feature-item ul li p {
    font-size: 14px;
}

.feature-item ul li p>a {
    color: #1f1f1f;
    text-decoration: underline;
}


/* .feature-item ul li::marker {
    color: #FF9E1B;
    content: '✓';
} */

/*.checkmark {
    color: #27ae60;
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}*/

.feature-text {
    color: #1f1f1f;
}

.feature-title {
    color: #1f1f1f;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -34px;
    background: #e74c3c;
    color: white;
    padding: 5px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.notes {
    margin-bottom: 24px;
}

.notes p {
    font-size: 12px;
    color: #474747;
    text-align: center;
}

.btn-disabled {
    background-color: #D5D5D5;
    color: #fff;
    border: none;
    cursor: not-allowed;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

.btn-enabled {
    background-color: #FF9E1B;
    color: white;
    border: none;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

.btn-outline {
    background: #fff;
    color: #FF9E1B;
    border: 2px solid #FF9E1B;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

button:focus:not(:focus-visible) {
    outline: none;
}

@media (max-width: 768px) {
    .plans-container {
        align-items: center;
        margin-top: 0px;
    }

    .plan-card {
        max-width: 100%;
    }

    .expandable-content {
        position: relative;
        box-shadow: none;
    }

    .notes {
        margin-bottom: 0px;
    }

    .sim-card {
        width: 155px;
    }

    .expandable-content.show {
        padding: 20px 0 0 0;
    }

    .btn-disabled {
        margin: 0px !important;
    }

    .btn-enabled {
        margin: 0px !important;
    }

    .btn-outline {
        margin: 0px !important;
    }
}

#signUpNowModal .modal-content-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
    flex-direction: column;
}

#signUpNowModal .modal-content-header .modal-header-title {
    text-align: center;
    font-size: 38px;
    line-height: 40px;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    margin-bottom: 16px;
    color: #1f1f1f;
}

#signUpNowModal .modal-content-header .modal-header-subtitle {
    font-size: 18px;
    line-height: 24px;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
    margin-bottom: 24px;
    color: #1f1f1f;
    text-align: center;
}

#signUpNowModal .modal-content-header .modal-header-subtitle p {
    font-size: 18px !important;
    line-height: 24px !important;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

#additionalInfoHeader,
#additionalInfoContent p {
    font-size: 14px !important;
}

.modal-dialog-middle .modal-content .modal-body .input-field--wrapper .title {
    font-size: 16px !important;
    line-height: 24px !important;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

.form-control.input-box {
    border-radius: 8px;
}

.sim-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.sim-options input[type="radio"] {
    display: none;
}

.sim-card {
    width: 180px;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #fff;
    background-color: #fff;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.sim-card .sim-name {
    font-size: 18px;
    font-weight: bold;
    display: block;
    color: #1F1F1F;
}

.sim-card .sim-desc {
    font-size: 14px;
    color: #474747;
    display: block;
    margin-top: 4px;
}

.sim-card:hover {
    transform: translateY(-2px);
}

.sim-options input[type="radio"]:checked+.sim-card {
    background-color: #fff7e6;
    border: 2px solid #ffa500;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #D5D5D5;
    margin: 24px 0;
}

#signup-form-confirmation table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 18px;
}

#signup-form-confirmation table td.label {
    font-size: 16px;
    padding-bottom: 4px;
    vertical-align: top;
    font-family: 'DIN Round Pro Bold', arial, sans-serif !important;
}

#signup-form-confirmation table td.value {
    font-size: 16px;
    padding-bottom: 16px;
    color: #1F1F1F;
}

.checkbox-container p {
    font-family: 'DIN Round Pro' !important;
    font-size: 14px !important;
    line-height: 21px;
}