body {
    font-family: Segoe UI, sans-serif;
    background: #f4fbff;
}

.top-nav {
    background: #2d9cdb;
}

.hero {

    background:
        linear-gradient(
            135deg,
            #dff4ff,
            #edf9ff);

    padding: 100px 0;
}

.hero h1 {

    color: #0a4f7c;
    font-size: 3rem;
    font-weight: 700;
}

.hero-logo {

    max-width: 320px;
}

.section-light {

    padding: 80px 0;
    background: white;
}

.feature-card {

    background: #ebf8ff;

    padding: 30px;

    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 6px 18px
        rgba(0,0,0,.08);

    transition: .3s;
}

.feature-card:hover {

    transform:
        translateY(-6px);
}

.contact-section {

    background:
        linear-gradient(
            135deg,
            #2d9cdb,
            #5bc0eb);

    color: white;

    padding: 80px 0;
}

.btn-primary {

    background: #2d9cdb;
    border: none;
}

.btn-primary:hover {

    background: #1d7eb8;
}
.delete-page {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #d8f3ff,
            #eefbff);
}

.delete-card {

    background: white;

    width: 450px;

    padding: 40px;

    border-radius: 20px;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.12);

    text-align: center;
}

.header-icon {

    font-size: 50px;

    margin-bottom: 10px;
}

.subtitle {

    color: #5d7285;

    margin-bottom: 30px;
}

.form-control {

    border-radius: 10px;

    padding: 12px;
}

.warning-box {

    background: #fff3cd;

    color: #856404;

    padding: 12px;

    border-radius: 10px;

    margin-bottom: 25px;
}

.button-row {

    display: flex;

    gap: 10px;

    justify-content: center;
}

.delete-btn {

    background: #d9534f;

    border: none;
}

.delete-btn:hover {

    background: #b52b27;
}

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 25px;
}

.btn-outline-danger {

    border: 2px solid #d9534f;

    color: #d9534f;

    background: white;

    transition: .25s;
}

.btn-outline-danger:hover {

    background: #d9534f;

    color: white;
}
.tw-modal {

    border: none;

    border-radius: 22px;

    overflow: hidden;

    background: white;

    box-shadow:
        0 10px 35px
        rgba(45,156,219,.25);
}

.tw-modal-header {

    background:
        linear-gradient(
            135deg,
            #2d9cdb,
            #6cc6ef);

    color: white;

    border: none;

    padding: 18px 24px;
}

.tw-modal-body {

    padding: 30px;

    font-size: 1.05rem;

    color: #28546f;

    background:
        linear-gradient(
            to bottom,
            #f7fcff,
            #eef9ff);
}

.tw-btn {

    background: #2d9cdb;

    color: white;

    border: none;

    border-radius: 10px;

    padding: 10px 28px;

    font-weight: 600;
}

.tw-btn:hover {

    background: #1d84be;

    color: white;
}

.modal-content {

    animation:
        twPop .22s ease-out;
}

@keyframes twPop {

    from {

        transform:
            scale(.9);

        opacity: 0;
    }

    to {

        transform:
            scale(1);

        opacity: 1;
    }

}

.twm-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.2s ease;
}

.twm-modal-content {
    width: 420px;
    max-width: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    animation: slideIn 0.2s ease;
}

.twm-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4da6ff, #1e88e5);
    color: white;
    padding: 16px 20px;
}

.twm-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.twm-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.twm-modal-body {
    padding: 24px 20px;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

.twm-modal-footer {
    padding: 0 20px 20px;
    text-align: right;
}

.twm-btn {
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.twm-btn-primary {
    background: #1e88e5;
    color: white;
}

.twm-btn-primary:hover {
    background: #1565c0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
