body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.email-wrapper {
    width: 100%;
    background-color: #f9fafb;
    padding: 24px 0;
}

.email-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.email-header {
    background-color: #fbfbfb;
    color: #111827;
    padding: 24px 32px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.email-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ea580c;
}

.email-content {
    padding: 32px;
    font-size: 16px;
}

.email-content p {
    margin-top: 0;
    margin-bottom: 20px;
    color: #4b5563;
}

.email-content p:last-child {
    margin-bottom: 0;
}

.email-content a {
    color: #2563eb;
    text-decoration: none;
}

.email-content a:hover {
    text-decoration: underline;
}

.email-footer {
    background-color: #f9fafb;
    color: #6b7280;
    padding: 24px 32px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #e5e7eb;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2563eb;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    margin: 16px 0;
}

@media only screen and (max-width: 600px) {
    .email-container {
        width: 100% !important;
        border-radius: 0 !important;
    }

    .email-content {
        padding: 24px !important;
    }
}