Certainly! Below is an example of a more visually appealing and modern stationary services landing page:

**HTML:**

```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Stationary Printing Services</title>
    <link rel="stylesheet" href="styles.css">
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>

<header>
    <div class="container">
        <h1>Stationary Printing Services</h1>
        <nav>
            <ul>
                <li><a href="#services">Services</a></li>
                <li><a href="#portfolio">Portfolio</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </div>
</header>

<section id="hero">
    <div class="container">
        <h2>Welcome to our Stationary Printing Services</h2>
        <p>We provide high-quality printing services for all your stationary needs.</p>
        <a href="#contact" class="cta-btn">Contact Us</a>
    </div>
</section>

<section id="services">
    <div class="container">
        <h2>Our Services</h2>
        <div class="service">
            <h3>Business Cards</h3>
            <p>Get professionally designed and printed business cards to make a lasting impression.</p>
        </div>
        <div class="service">
            <h3>Letterheads</h3>
            <p>Customize your letterheads with your logo and brand identity for professional correspondence.</p>
        </div>
        <div class="service">
            <h3>Envelopes</h3>
            <p>Print envelopes with your company's logo and address for a polished look.</p>
        </div>
    </div>
</section>

<section id="portfolio">
    <div class="container">
        <h2>Our Portfolio</h2>
        <div class="portfolio-item">
            <img src="business_card.jpg" alt="Business Card">
            <p>Business Card</p>
        </div>
        <div class="portfolio-item">
            <img src="letterhead.jpg" alt="Letterhead">
            <p>Letterhead</p>
        </div>
        <div class="portfolio-item">
            <img src="envelope.jpg" alt="Envelope">
            <p>Envelope</p>
        </div>
    </div>
</section>

<section id="contact">
    <div class="container">
        <h2>Contact Us</h2>
        <form action="#" method="post">
            <label for="name">Name:</label>
            <input type="text" id="name" name="name" required>
            <label for="email">Email:</label>
            <input type="email" id="email" name="email" required>
            <label for="message">Message:</label>
            <textarea id="message" name="message" rows="4" required></textarea>
            <button type="submit">Send Message</button>
        </form>
    </div>
</section>

<footer>
    <div class="container">
        <p>&copy; 2024 Stationary Printing Services. All rights reserved.</p>
    </div>
</footer>

</body>
</html>
```

**CSS:**

```css
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

/* Hero section styles */
#hero {
    background-image: url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

#hero h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #cc5500;
}

/* Services section styles */
#services {
    background-color: #f4f4f4;
    padding: 100px 0;
}

#services h2 {
    margin-bottom: 50px;
    font-size: 2.5em;
}

.service {
    margin-bottom: 50px;
}

.service h3 {
    margin-bottom: 10px;
    font-size: 1.8em;
}

.service p {
    font-size: 1.2em;
}

/* Portfolio section styles */
#portfolio {
    padding: 100px 0;
}

#portfolio h2 {
    margin-bottom: 50px;
    font-size: 2.5em;
}

.portfolio-item {
    display: inline-block;
    margin: 0 20px;
    text-align: center;
}

.portfolio-item img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item img:hover {
    transform: scale(1.05);
}

.portfolio-item p {
    margin-top: 20px;
    font-size: 1.2em;
}

/* Contact section styles */
#contact {
    background-color: #333;
    color: #fff;
    padding: 100px 0;
}

#contact h2 {
    margin-bottom: 50px;
    font-size: 2.5em;
}

#contact form {
    margin-top: 30px;
}

#contact label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px