/* Global Site Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-wrapper { padding: 30px 20px; flex: 1; }
.container { background-color: white; padding: 30px 40px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

/* Header & Navigation */
header { background-color: white; border-bottom: 1px solid #e5e7eb; padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.logo-area { display: flex; align-items: center; text-decoration: none; }
nav { display: flex; gap: 20px; }
nav a { text-decoration: none; color: #4b5563; font-weight: 500; }
nav a:hover, nav a.active { color: #2563eb; }

/* Footer */
footer { background-color: white; border-top: 1px solid #e5e7eb; padding: 20px 30px; text-align: center; font-size: 14px; color: #6b7280; margin-top: auto; }
footer a { color: #4b5563; text-decoration: none; margin: 0 10px; }
footer a:hover { color: #2563eb; text-decoration: underline; }

/* Typography */
h1 { color: #111827; border-bottom: 2px solid #e5e7eb; padding-bottom: 10px; margin-top: 0; }
h2 { color: #1f2937; margin-top: 25px; font-size: 20px; }
p.subtitle { color: #6b7280; margin-bottom: 20px; }

/* Tool Elements (index.html) */
textarea { width: 100%; padding: 12px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 16px; box-sizing: border-box; resize: vertical; margin-top: 8px; }
button { background-color: #2563eb; color: white; border: none; padding: 14px 24px; font-size: 16px; border-radius: 6px; cursor: pointer; margin: 20px 0; font-weight: bold; width: 100%; }
button:disabled { background-color: #9ca3af; cursor: not-allowed; }
#status { font-weight: bold; color: #d97706; margin-top: 0; padding: 10px; background-color: #fef3c7; border-radius: 4px; }
#progressContainer { display: none; margin-bottom: 20px; margin-top: 10px; background-color: #f9fafb; padding: 15px; border-radius: 8px; border: 1px solid #e5e7eb; }
.progress-text-row { display: flex; justify-content: space-between; font-size: 14px; color: #4b5563; margin-bottom: 8px; }
.progress-track { width: 100%; background-color: #e5e7eb; border-radius: 9999px; height: 12px; overflow: hidden; }
#progressBar { width: 0%; height: 100%; background-color: #2563eb; }

/* Blog Elements (blog.html) */
.blog-card { background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 25px; }
.blog-card h2 { border: none; padding: 0; }
.blog-card h2 a { text-decoration: none; color: inherit; }
.blog-card h2 a:hover { color: #2563eb; }
.meta { font-size: 14px; color: #6b7280; margin-bottom: 15px; }
.read-more { display: inline-block; margin-top: 15px; color: #2563eb; text-decoration: none; font-weight: bold; }

/* Contact Elements (contact.html) */
.email-box { background-color: #f3f4f6; border: 1px dashed #d1d5db; padding: 25px; border-radius: 8px; display: inline-block; margin-top: 20px; font-size: 18px; }