body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    background-color: #f5f5f5;
}

h1 {
    color: #003ac0;
    margin-bottom: 10px;
    font-size: 2rem;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

h2 {
    font-size: 1.2rem;
    margin-top: 30px;
    color: #444444;
    border-left: 4px solid #c04000;
    padding-left: 10px;
}

.container {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    background-color: #00c09a;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 10px;
    font-weight: bold;
}

.step-number-two {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 10px;
    font-weight: bold;
}

.recipients {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.recipients label {
    display: block;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recipients label:hover {
    background-color: #f0f0f0;
    border-color: #ddd;
}

.recipients input[type="checkbox"] {
    margin-right: 8px;
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    transition: border 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

input[type="text"]:focus {
    outline: none;
    border-color: #c04000;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 5px rgba(192, 64, 0, 0.2);
}

.email-preview {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    transition: border 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

textarea:focus {
    outline: none;
    border-color: #c04000;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 5px rgba(192, 64, 0, 0.2);
}

button {
    background-color: #c00000;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #a03000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.instructions {
    font-size: 14px;
    margin-top: 20px;
    color: #666;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #ddd;
}

.download-btn {
    padding: 12px 25px;
    margin: 0 auto;
    font-size: 16px;
	font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    display: inline-block;
	letter-spacing: 0.5px;
}
       
.download-btn:hover {
    background-color: #0056b3;
}

.novel-description {
    max-width: 1200px;
    margin: 20px auto;
    font-size: 20px;
    line-height: 1.5;
}
    

.header-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 16px;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

    button {
        width: 100%;
    }

    .recipients {
        flex-direction: column;
    }
}