/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BODY */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #e6ecf5, #f9fbff);
    min-height: 100vh;
    color: #333;
}

/* CARD GLOBAL */
.card {
    background: #ffffff;
    width: 90%;
    max-width: 520px;
    margin: 100px auto;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* TEKS */
.title {
    color: #003a8f;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    margin-bottom: 15px;
}

.description {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
}

/* BUTTON */
.btn {
    width: 100%;
    padding: 14px;
    margin: 8px 0;
    border: none;
    border-radius: 8px;
    background: #003a8f;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background: #002766;
}

/* PROFILE */
.profile-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #003a8f;
    margin-bottom: 15px;
}

.info p {
    margin: 6px 0;
    font-size: 14px;
}

/* LIST */
.list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.list li {
    background: #f1f5fb;
    margin: 10px 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* LINK */
a {
    color: #003a8f;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
}
