/* General Resets */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #F0F0F1;
    color: #464646;
}

.email-container {
    background-color: #FFF;
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
}

.email-header {
    color: #464646;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.email-body {
    margin-bottom: 20px;
}

.email-footer {
    color: #FFF;
}

a {
    color: #21759C;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


table {
    border-spacing: 0;
    border-collapse: collapse;
}

img {
    display: block;
    border: 0;
    line-height: 100%;
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

.button {
    background-color: #21759C;
    padding: 12px 20px !important;
}

.button:hover {
    background-color: #145C7E;
}

/* Responsive Styles */
@media only screen and (max-width: 600px) {
    .email-container {
        width: 100% !important;
    }

    .email-header, .email-body, .email-footer {
        padding: 20px !important;
    }

    .email-header h1 {
        font-size: 22px !important;
    }

    .email-body p, .email-footer p {
        font-size: 14px !important;
    }

    .email-body ul {
        padding-left: 15px !important;
    }

    .button {
        font-size: 16px !important;
        padding: 12px 20px !important;
    }
}