/* File: style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    max-width: 850px;
    margin: 20px auto;
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.header { text-align: center; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.header h1 { color: #d32f2f; margin: 0; }
.header p { margin: 5px 0 0; color: #666; }
.content h2 { color: #333; border-bottom: 2px solid #ff8c00; padding-bottom: 5px; }
.content h3 { color: #555; }
.download-box { background: #fff9f2; border: 2px dashed #ff8c00; padding: 20px; margin: 30px 0; text-align: center; border-radius: 5px; }
.cta-button { background: linear-gradient(45deg, #f44336, #ff9800); color: white; padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; font-size: 18px; font-weight: bold; text-decoration: none; display: inline-block; transition: transform 0.2s; }
.cta-button:hover { transform: scale(1.05); }
.footer { margin-top: 40px; text-align: center; font-size: 14px; border-top: 1px solid #eee; padding-top: 20px; color: #777; }
.footer a { color: #555; margin: 0 10px; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.navbar { text-align: center; padding: 10px 0; background-color: #333; }
.navbar a { color: white; text-decoration: none; padding: 10px 15px; }
.navbar a:hover { background-color: #555; }
