@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', bahnschrift light;
}

body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    background: white;
}

.savings-page {
    width: 100%;
}

.slider {
    position: relative;
    width: 450px;
    height: 430px;
    overflow: hidden;
    background-color: whitesmoke;
    padding: 0;
    /* 30px */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* added width and height */
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    /* each slide takes 100% of slider width */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures image fills slide without distortion */
}

.landing {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 80px 0px 0px 0px;
    width: 100%;
    background-color: whitesmoke;
}

.landing-text {
    width: 400px;
}

.landing-text h1 {
    margin-bottom: 14px;
    font-size: 43px;
    color: darkblue;
}

.landing-text p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 20px;
}

.landing-text a {
    width: 180px;
    padding: 10px;
    font-weight: bold;
    border: 1px solid darkblue;
    margin-top: 40px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: darkblue;
}

.landing-text div {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.our-packages {
    padding: 100px;
}

.our-packages h2 {
    text-align: center;
    margin-bottom: 60px;
    color: darkblue;
}

.our-packages .packages {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.our-packages .packages div {
    width: 450px;
    padding: 40px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin-bottom: 20px;
}

.packages div img,
h3,
p {
    margin-bottom: 10px;
}

.packages h3 {
    color: darkblue;
}

.packages button {
    width: 150px;
    padding: 10px;
    border: none;
    font-weight: bold;
    color: white;
    background-color: darkblue;
    margin-top: 10px;
    cursor: pointer;
}

.packages button:hover {
    background-color: blue;
}

.promo {
    margin: auto;
    width: 75%;
    background-image: url(../images/investment_photo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
    border-radius: 30px;
}

.faq {
    width: 75%;
    margin: auto;
    padding: 150px 0px 20px 0px;
}

.faq h2 {
    margin-bottom: 120px;
    font-size: 35px;
    color: darkblue;
}

.faq div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.faq h3 {
    color: darkblue;
}

.faq article {
    margin-bottom: 50px;
}

.faq p {
    margin-top: 5px;
    max-width: 450px;
    overflow: hidden;
    font-size: 15px;
}

.sidebar {
    width: 260px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(160deg, #0f172a, #1e293b);
    border-radius: 24px;
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.18);
    position: sticky;
    top: 32px;
    flex: 0 0 260px;
    color: #fff;
    z-index: 9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar:hover {
    box-shadow: 0 32px 60px rgba(15, 23, 42, 0.22);
}

.sidebar img {
    margin: 0 auto 8px;
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.25);
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    width: 100%;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.sidebar a img {
    margin: 0;
    filter: brightness(0) invert(1);
}

.sidebar a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateX(4px);
}

.close-button {
    display: none;
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.16);
    border: none;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1.05);
}

.toggle {
    border: none;
    background: rgba(15, 23, 42, 0.22);
    border-radius: 999px;
    padding: 10px 12px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.toggle:hover {
    transform: translateY(-1px);
}

.dashboard {
    display: flex;
    gap: clamp(24px, 4vw, 48px);
    align-items: flex-start;
    padding: clamp(24px, 5vw, 48px);
    max-width: 1280px;
    margin: clamp(24px, 5vw, 48px) auto;
    background: #f8fafc;
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.user-dashboard__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.user-dashboard__header {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 36px);
    border-radius: 28px;
    background: linear-gradient(145deg, #0ea5e9, #6366f1);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.user-dashboard__header::after {
    content: '';
    position: absolute;
    inset: -40% -40% auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.user-dashboard__intro {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.user-dashboard__welcome {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
}

.user-dashboard__headline {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.user-dashboard__subtext {
    font-size: 1rem;
    max-width: 460px;
    opacity: 0.88;
}

.user-dashboard__header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.25);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.icon-button img {
    filter: brightness(0) invert(1);
}

.icon-button:hover {
    background: rgba(15, 23, 42, 0.35);
    transform: translateY(-1px);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.primary-button:hover {
    background: #020617;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.28);
}

.primary-button--inline {
    box-shadow: none;
    align-self: center;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.secondary-button:hover {
    background: #bae6fd;
    transform: translateY(-1px);
}

.user-dashboard__summary {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.summary-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-card--accent {
    background: linear-gradient(150deg, #0f172a, #1e293b);
    color: #fff;
    border: none;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.2);
}

.summary-card__label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.summary-card__value {
    font-size: 2rem;
    font-weight: 700;
}

.summary-card__meta {
    font-size: 0.95rem;
    opacity: 0.65;
}

.summary-card--accent .summary-card__meta {
    opacity: 0.85;
}

.user-dashboard__layout {
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 4vw, 40px);
}

.user-dashboard__main {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-heading h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
}

.section-heading p {
    font-size: 0.98rem;
    color: #475569;
}

.section-heading--compact {
    margin-bottom: 16px;
}

.section-subheading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
}

.plan-card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.plan-card__badge {
    align-self: flex-start;
    padding: 4px 12px;
    background: #f0f9ff;
    color: #0284c7;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-card__badge--teal {
    background: #ecfdf5;
    color: #0f766e;
}

.plan-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.plan-card__description {
    color: #475569;
    font-size: 0.95rem;
}

.plan-card__metrics {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.plan-card__metrics dt {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.plan-card__metrics dd {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.empty-state {
    background: linear-gradient(145deg, #eff6ff, #ffffff);
    padding: 36px 28px;
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.empty-state h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.empty-state p {
    color: #475569;
    font-size: 0.95rem;
}

.empty-state.small {
    padding: 28px 24px;
}

.user-dashboard__side {
    width: min(360px, 100%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.calendar-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-card__title {
    font-weight: 700;
    color: #0f172a;
}

.calendar-card--empty {
    justify-content: center;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.calendar-month {
    font-weight: 700;
    color: #1e293b;
}

.calendar-nav {
    border: none;
    background: #e2e8f0;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.calendar-nav:hover {
    background: #cbd5f5;
    transform: translateY(-1px);
}

.calendar,
.con-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.day {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    position: relative;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.day:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    border-color: rgba(14, 165, 233, 0.45);
}

.day.checked {
    background: linear-gradient(160deg, #22d3ee, #2563eb);
    color: #fff;
    border-color: transparent;
}

.day.pending {
    background: #fef08a;
    border-color: #fde047;
    color: #854d0e;
}

.day.pending::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #b45309;
}

.day.unchecked:hover {
    background: #e0f2fe;
}

.day:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

body.sidebar-open {
    overflow: hidden;
}

@media (min-width: 1025px) {
    .toggle {
        display: none;
    }
}

@media (max-width: 1200px) {
    .dashboard {
        flex-direction: column;
    }

    .user-dashboard__side {
        position: static;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .dashboard {
        margin: 24px;
        border-radius: 28px;
    }

    .sidebar {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 24px;
        transform: translateX(-120%);
        max-height: calc(100vh - 48px);
        overflow-y: auto;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .close-button {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .dashboard {
        margin: 16px;
        padding: 20px;
    }

    .user-dashboard__header {
        padding: 24px;
    }

    .user-dashboard__intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-dashboard__summary {
        grid-template-columns: 1fr;
    }

    .plan-card__metrics {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .calendar,
    .con-calendar {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .calendar-card {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .dashboard {
        margin: 0;
        padding: 16px;
        border-radius: 0;
        box-shadow: none;
    }

    .sidebar {
        border-radius: 20px;
    }

    .day {
        width: 40px;
        height: 40px;
    }
}

.no-plans img {
    margin-bottom: 8px;
}

.yes-plans {
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 400px;
    padding: 20px;
    margin: 20px;
}

.yes-plans p {
    margin-top: 10px;
    font-size: small;
}

.yes-plans span {
    color: darkblue;
    font-weight: bold;
    padding: 3px;
    font-size: small;
    border-radius: 13px;
}

.yes-plans div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.yes-plans span button {
    padding: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    background-color: darkblue;
    border-radius: 5px;
    color: white;
}

.yes-plans span button:hover {
    background-color: blue;
    transition: ease-in 1s;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    text-align: center;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.con-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.con-close:hover,
.con-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal button {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.modal button:hover {
    background-color: #218838;
}

.toggle {
    padding: 10px;
    border: none;
    background-color: darkblue;
    color: white;
    float: left;
}

.toggle-div {
    width: 100%;
    margin-bottom: 50px;
}

.close-button {
    background-color: red;
    padding: 3px;
    width: 37px;
    border: none;
    color: white;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 28px;
    font-weight: bold;
}

.transactions {
    display: flex;
    margin-top: 40px;
}

.records {
    margin-left: 60px;
    flex-grow: 1;
    padding: 20px;
}

.records h2 {
    margin-bottom: 60px;
    margin-top: 60px;
    color: darkblue;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}

.history {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    flex-wrap: wrap;
    width: 100%;
}

.history div {
    width: 330px;
    margin-bottom: 40px;
}

.history table {
    width: 300px;
    font-size: small;
}

.history h3 {
    color: darkblue;
    text-align: center;
    font-size: 15px;
    margin-bottom: 30px;
}

.history table td {
    padding: 20px;
}

.withdrawal {
    display: flex;
    margin-top: 40px;
}

.withdraw {
    margin-left: 100px;
}

.withdraw .balance {
    padding: 50px;
    background-color: darkblue;
    color: white;
    width: 600px;
    border-radius: 15px;
    font-weight: bold;
}

.withdraw form {
    margin-top: 40px;
    width: 600px;
}

.withdraw form .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.withdraw form input,
select {
    width: 280px;
    padding: 10px;
}

.withdraw form div {
    display: grid;
}

.withdraw form h3 {
    margin-bottom: 5px;
    color: darkblue;
}

.withdraw form button {
    margin-top: 40px;
    width: 100px;
    padding: 10px;
    background-color: darkblue;
    color: white;
    cursor: pointer;
    border: none;
    font-weight: bold;
    border-radius: 5px;
}

.withdraw form button:hover {
    background-color: blue;
}

.withdraw form .btn-con {
    display: flex;
    justify-content: center;
    align-items: center;
}

.withdraw form .details label {
    margin-top: 30px;
    font-size: small;
}

.plans {
    display: flex;
    margin-top: 40px;
}

.options {
    margin-left: 100px;
}

.options .div {
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 600px;
    padding: 20px;
    margin-bottom: 20px;
}

.options h3 {
    color: darkblue;
    padding: 5px 0px;
}

.options div button {
    font-weight: bold;
    color: white;
    background-color: darkblue;
    border: none;
    width: 100px;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.options div button:hover {
    background-color: blue;
}

.more-content {
    display: none;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 600px;
    padding: 20px;
    margin-bottom: 20px;
}

.more-content article {
    padding: 10px;
}

.more-content article li {
    padding: 10px;
}

.options h2 {
    color: darkblue;
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
    padding: 5px;
}

.registration {
    margin-top: 40px;
    display: flex;
}

.register {
    margin-left: 100px;
}

.register h2 {
    color: darkblue;
}

.register form select {
    padding: 10px;
    width: 250px;
    margin-bottom: 10px;
}

.register form input {
    padding: 10px;
    width: 250px;
    margin-bottom: 10px;
}

.register form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 500px;
    padding: 30px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: white;
}

.register form p {
    padding: 10px;
    font-size: 13px;
    width: 400px;
    margin-top: 10px;
}

.register form button {
    font-weight: bold;
    color: white;
    background-color: darkblue;
    border: none;
    width: 100px;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.register form button:hover {
    background-color: blue;
    transition: ease-in 1s;
}

select option {
    padding: 10px;
}

.deposit-page {
    display: flex;
    margin-top: 40px;
}

.deposit {
    margin-left: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.deposit h2 {
    color: darkblue;
    text-align: center;
    margin: 20px;
}

.deposit form {
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: white;
}

.deposit form input {
    width: 300px;
    padding: 10px;
}

.deposit form label {
    margin: 10px 0px;
    font-size: 13px;
    float: left;
    font-weight: bold;
}

.depositform select {
    width: 300px;
    padding: 10px;
}

.depositform select option {
    padding: 10px;
}

.deposit form button {
    font-weight: bold;
    color: white;
    background-color: darkblue;
    border: none;
    width: 100px;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.deposit form button:hover {
    background-color: blue;
    transition: ease-in 1s;
}

.cardpay {
    padding: 10px;
    margin-top: 40px;
}

.cardpay p {
    text-align: center;
    margin-bottom: 10px;
}

.cardpay form {
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: white;
}

.cardpay form input {
    width: 300px;
    padding: 10px;
}

.cardpay form label {
    margin: 10px 0px;
    font-size: 13px;
}

.cardpay form button {
    font-weight: bold;
    color: white;
    background-color: darkblue;
    border: none;
    width: 100px;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.cardpay form button:hover {
    background-color: blue;
    transition: ease-in 1s;
}

.notice {
    margin-top: 40px;
    display: flex;
}

.notice h2 {
    margin-left: 30px;
    margin-top: 10px;
    padding: 20px;
    color: darkblue;
}

.note {
    margin-left: 150px;
}

.note .note-div {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 500px;
    background-color: #fff;
    margin-top: 50px;
}

.note article {
    margin: 0px 10px;
}

.note img {
    border-radius: 50%;
}

.note article h3 {
    padding: 1px 0px;
    font-size: 14px;
    color: darkblue;
}

.note article p {
    font-size: 12px;
}

@media only screen and (max-width:430px) {
    .landing {
        flex-wrap: wrap;
    }

    .landing-text a {
        max-width: 165px;
        margin-bottom: 40px;
    }

    .landing-text {
        max-width: 365px;
        padding: 5px;
        margin-bottom: 10px;
    }

    .land-img img {
        width: 340px;
        height: 420px;
    }

    .our-packages {
        padding: 50px;
    }

    .our-packages .packages div {
        max-width: 420px;
        padding: 20px;
    }

    .promo {
        width: 95%;
        background-size: contain;
    }

    .faq {
        padding: 10px;
    }

    .faq h2 {
        margin-bottom: 80px;
    }

    .faq p {
        max-width: 350px;
    }

    .right {
        margin-left: 0px;
        padding: 5px;
    }

    .right .balance {
        max-width: 325px;
    }

    .yes-plans {
        width: 325px;
    }

    .calendar {
        width: 315px;
        gap: 1.5px;
        display: grid;
        grid-template-columns: repeat(6, ifr);
    }

    .con-calendar {
        width: 315px;
        gap: 1.5px;
        display: grid;
        grid-template-columns: repeat(6, ifr);
    }

    .close-button {
        display: block;
    }

    .save-cal {
        margin: 0px;
        padding: 5px;
    }

    .day {
        width: 34px;
        height: 34px;
    }

    .sidebar {
        left: -250px;
        transition: left 0.3s ease;
        position: absolute;
    }

    .sidebar.active {
        left: 0;
    }

    .toggle {
        font-size: 20px;
        cursor: pointer;
        margin-bottom: 10px;
        padding: 15px;
        display: flex;
    }

    .records {
        margin-left: 10px;
    }

    .records h2 {
        text-align: center;
        margin-top: 80px;
    }

    .records .centre {
        text-align: center;
    }

    .history div {
        margin-bottom: 80px;
    }

    .deposit {
        margin-left: 0px;
        padding: 5px;
    }

    .deposit form {
        max-width: 350px;
    }

    .withdraw {
        margin-left: 10px;
    }

    .withdraw .balance {
        width: 350px;
        margin-top: 70px;
    }

    .withdraw form {
        width: 350px;
    }

    .withdraw form .details {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .withdraw form h3 {
        margin-left: 10px;
    }

    .myaccount .account {
        margin-left: 10px;
        display: grid;
    }

    .myaccount h3 {
        color: darkblue;
        text-align: center;
    }

    .account form {
        max-width: 400px;
    }

    .account form .settings {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .options {
        margin-left: 10px;
        padding: 10px;
    }

    .options .div {
        max-width: 330px;
    }

    .options h2 {
        margin-top: 30px;
    }

    .more-content {
        max-width: 330px;
        padding: 20px;
    }

    .register {
        margin-left: 0px;
        padding: 10px;
    }

    .register form {
        max-width: 370px;
    }

    .register form p {
        max-width: 350px;
    }

    .notice h2 {
        margin-left: 0px;
        text-align: center;
        padding: 25px 0px;
    }

    .note {
        margin-left: 10px;
    }

    .note .note-div {
        width: 350px;
        margin-top: 20px;
    }


}