/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/* BODY */

body{
    font-family:Inter, Arial, sans-serif;
    background:#f5f7fa;
    color:#1a1a1a;
    line-height:1.7;
}


/* MAIN CONTENT */

.content{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:40px 30px;
}


/* TOP NAV */

.content > p:first-child{
    margin-bottom:30px;
    font-size:15px;
}

.content > p:first-child a{
    color:#123861;
    text-decoration:none;
    font-weight:600;
}

.content > p:first-child a:hover{
    text-decoration:underline;
}


/* MAIN CARD */

.card{
    background:white;
    border-top:6px solid #123861;
    border-radius:8px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    padding:50px;
    margin-bottom:40px;
}


/* TITLES */

h1{
    font-size:2.3rem;
    margin-bottom:25px;
    color:#123861;
    line-height:1.3;
}

h2{
    margin-top:50px;
    margin-bottom:20px;
    color:#611238;
    font-size:1.6rem;
}

h3{
    margin-top:35px;
    margin-bottom:15px;
}


/* TEXT */

p{
    margin-bottom:18px;
    font-size:17px;
}


/* BEGIN BUTTON */

button{
    background:#12613b;
    color:white;
    border:none;
    padding:14px 30px;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

button:hover{
    opacity:.9;
    transform:translateY(-2px);
}

#right{
    text-align:right;
    margin-top:30px;
}


/* TABLES */

table{
    width:100%;
    margin-top:25px;
    border-collapse:collapse;
    background:white;
}

th{
    background:#123861;
    color:white;
    padding:14px;
}

td{
    padding:12px;
    border-bottom:1px solid #eee;
    text-align:center;
}

tr:hover td{
    background:#f9fbfd;
}


/* LINKS */

a{
    color:#123861;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}


/* FOOTER */

#footer{
    text-align:center;
    padding:30px 0;
    color:#666;
}


/* LISTS */

ul{
    list-style:none;
    margin-top:20px;
}

li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

li a{
    display:block;
    transition:.2s;
}

li a:hover{
    padding-left:8px;
}


/* EMPHASIS */

strong{
    font-weight:700;
}

em{
    color:#611238;
}


/* MOBILE */

@media(max-width:768px){

    .content{
        padding:20px;
    }

    .card{
        padding:25px;
    }

    h1{
        font-size:1.8rem;
    }

    h2{
        font-size:1.4rem;
    }

    p{
        font-size:16px;
    }

    button{
        width:100%;
    }

    #right{
        text-align:center;
    }

}

/* FORCE TABLE READABILITY (override Bootstrap + text-white) */

.table{
    color:#1a1a1a !important;
    background:white !important;
}

.table th{
    background:#123861 !important;
    color:#fff !important;
}

.table td{
    color:#1a1a1a !important;
    background:white !important;
}

.table.text-white,
.table.text-white *{
    color:#1a1a1a !important;
}