body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 200;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    background-color: #0B1116; /* dark background like services/contact sections */
    line-height: 1.6;
}

main {
    max-width: 900px;
    margin: 80px auto 80px auto;
    padding: 30px 40px;
    background-color: #141b30; /* slightly lighter dark bg */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    color: #f0f0f0;
    position: relative;
}

h1, h2, h3 {
    color: #ffffff;
    font-weight: 200;
}

h1 { font-size: 2.5em; margin-bottom: 0.5em; }
h2 { font-size: 1.8em; margin-top: 1.5em; margin-bottom: 0.5em; }

strong, td, li, code, span {
    color: #ffffff;
}

i {
    color: #fff;
    margin-right: 5px;
}

p {
    font-size: 18px;
    margin-bottom: 1em;
    color: #d4d4d4;
}

ul { margin-bottom: 1em; padding-left: 1.5em; }

a {
    color: #29ABE2; /* site accent blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.logo {
    width: 250px;
    top: 50px;
    right: 30px;
    position: absolute;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

th, td {
    border: 1px solid #2d2d3a;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #151b30;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        margin: 40px 10px;
        padding: 20px;
    }

    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }
    p { font-size: 16px; }
}