body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    color: #333;
}

.blog-post {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.blog-post h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.blog-post p {
    color: #666;
}

.blog-post a {
    text-decoration: none;
    color: #007BFF;
}

.blog-post a:hover {
    text-decoration: underline;
}

.subscribe-section {
    background: #007BFF;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.subscribe-section h3 {
    margin-bottom: 10px;
}

.subscribe-section input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    width: 250px;
}

.subscribe-section button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background: #0056b3;
    color: white;
    cursor: pointer;
}

.subscribe-section button:hover {
    background: #004494;
}