	 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            color: #333;
        }
        header {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem;
        }
        header img.logo {
            width: 128px;
            height: 128px;
            display: block;
            margin: 0 auto 1rem;
        }
        header h1 {
            margin: 0;
            font-size: 2.5rem;
        }
        nav {
            background: #34495e;
            padding: 1rem;
        }
        nav a {
            color: white;
            margin: 0 1rem;
            text-decoration: none;
            font-weight: bold;
        }
        nav a:hover {
            text-decoration: underline;
        }
        .email-sample-section {
            background: #1a1a1a;
            color: #f5f5f5;
            padding: 2rem;
            text-align: center;
        }
        .email-sample {
            background: #1a1a1a;
            border: 1px solid #444;
            padding: 1.5rem;
            border-radius: 5px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            text-align: left;
            white-space: pre-wrap;
            max-width: 800px;
            margin: 1rem auto;
            color: #f5f5f5;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: #f4f4f4;
        }
        .hero h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .features, .pricing, .contact {
            padding: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .features h2, .pricing h2, .contact h2 {
            text-align: center;
            color: #2c3e50;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .feature {
            background: #fff;
            border: 1px solid #ddd;
            padding: 1rem;
            text-align: center;
            border-radius: 5px;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .price-card {
            background: #fff;
            border: 1px solid #ddd;
            padding: 1.5rem;
            text-align: center;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .price-card h3 {
            margin: 0;
            color: #2c3e50;
        }
        .price-card .price {
            font-size: 2rem;
            color: #e74c3c;
            margin: 0.5rem 0;
        }
        .price-card button {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1rem;
        }
        .price-card button:hover {
            background: #c0392b;
        }
        .contact form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 500px;
            margin: 1rem auto;
        }
        .contact input, .contact textarea {
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .contact button {
            background: #2c3e50;
            color: white;
            border: none;
            padding: 0.75rem;
            cursor: pointer;
            border-radius: 5px;
        }
        .contact button:hover {
            background: #34495e;
        }
        .form-message {
            text-align: center;
            color: #e74c3c;
            font-weight: bold;
        }
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 1rem;
            margin-top: 2rem;
        }
        @media (max-width: 600px) {
            header h1 {
                font-size: 1.8rem;
            }
            header img.logo {
                width: 100px;
                height: 100px;
            }
            .hero h2 {
                font-size: 1.5rem;
            }
            .email-sample {
                font-size: 0.8rem;
                padding: 1rem;
            }
        }


        .logo {
            position: fixed; /* Keeps the logo in place during scroll */
            top: 10px; /* Distance from the top */
            right: 10px; /* Distance from the right */
            z-index: 1000; /* Ensures logo stays above other content */
        }

        /* Optional: Style for the logo image */
        .logo img {
            width: 100px; /* Adjust size as needed */
            height: auto;
        }

        /* For demo: Add content to enable scrolling */
        .content {
            height: 2000px; /* Tall content to allow scrolling */
            padding: 20px;
        }

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #0056b3;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
}
.button-link:hover {
    background-color: #0056b3;
}
 .download {
            padding: 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .download h2 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        .download-details {
            background: #fff;
            border: 1px solid #ddd;
            padding: 1.5rem;
            border-radius: 5px;
            text-align: left;
            max-width: 500px;
            margin: 1rem auto;
        }
        .download-details p {
            margin: 0.5rem 0;
        }
        .download-button {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 1rem 2rem;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
        }
        .download-button:hover {
            background: #c0392b;
        }