* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #e6e6e6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WRAPPER */
.card-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* CARD BASE */
.card {
    width: 350px;
    height: 200px;
    border-radius: 14px;
    padding: 25px;
    color: white;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* FRONT CARD */
.front {
    background: linear-gradient(135deg, #0b2f4a, #061c2d);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    width: 50px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.front h1 {
    font-size: 26px;
    letter-spacing: 4px;
}

.tagline {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 10px;
    color: #cccccc;
}

/* BACK CARD */
.back {
    background: #ffffff;
    color: #0b2f4a;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.back h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.role {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.details p {
    font-size: 13px;
    margin: 6px 0;
}
