Welcome!

We're a friendly team dedicated to helping you.

Get in touch with us to discuss your needs.

Contact Us

Email: info@example.com

Phone: +15551234567

Address: About Us

We’d love to hear from you! It’s easy.

``` ```css /* style.css */ body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; position: sticky; top: 0; z-index: 100; } header .nav { display: flex; justify-content: center; } header .nav a { text-decoration: none; color: #333; font-weight: bold; } header .nav a:hover { text-decoration: underline; } main { padding: 20px; max-width: 800px; margin: 0 auto; } section { padding: 20px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 10px; background-color: #f9f9f9; } section h1 { font-size: 2.5em; margin-bottom: 10px; } section h1:first-child { text-align: center; } section h2 { font-size: 1.8em; margin-bottom: 10px; } section h2 a { color: #333; text-decoration: none; font-weight: normal; } section h2 a:hover { text-decoration: underline; } footer { background-color: #333; color: #fff; text-align: center; padding: 10px; position: absolute; bottom: 0; left: 0; width: 100%; } footer .copyright { font-size: 1.2em; color: #333; text-align: center; }