!DOCTYPE html html lang=en head meta charset=UTF-8 meta name=viewport content=width=device-width, initial-scale=1.0 titleContact Us - Global Advertising LLCtitle style { margin 0; padding 0; box-sizing border-box; } body { font-family -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height 1.6; color #333; background #f8f9fa; } .header { background linear-gradient(135deg, #667eea 0%, #764ba2 100%); color white; padding 40px 20px; text-align center; } .header h1 { font-size 2.5rem; margin-bottom 10px; } .header p { font-size 1.2rem; opacity 0.95; } .back-link { display inline-block; color white; text-decoration none; margin-bottom 20px; font-size 1.1rem; transition opacity 0.3s ease; } .back-linkhover { opacity 0.8; } .container { max-width 1200px; margin 0 auto; padding 60px 20px; } .contact-grid { display grid; grid-template-columns 1fr 1fr; gap 40px; margin-bottom 40px; } .contact-info-box { background white; padding 40px; border-radius 12px; box-shadow 0 4px 6px rgba(0,0,0,0.1); } .contact-info-box h2 { color #667eea; margin-bottom 25px; font-size 1.8rem; border-bottom 3px solid #667eea; padding-bottom 10px; } .info-item { margin-bottom 25px; } .info-item h3 { color #1a1a1a; margin-bottom 8px; font-size 1.2rem; display flex; align-items center; gap 10px; } .info-item p { color #555; line-height 1.8; margin-left 30px; } .info-item a { color #667eea; text-decoration none; } .info-item ahover { text-decoration underline; } .form-container { background white; padding 40px; border-radius 12px; box-shadow 0 4px 6px rgba(0,0,0,0.1); } .form-container h2 { color #667eea; margin-bottom 25px; font-size 1.8rem; border-bottom 3px solid #667eea; padding-bottom 10px; } .form-group { margin-bottom 20px; } .form-group label { display block; margin-bottom 8px; color #333; font-weight 600; } .form-group input, .form-group textarea { width 100%; padding 15px; border 2px solid #e1e8ed; border-radius 8px; font-size 1rem; font-family inherit; transition border-color 0.3s ease; } .form-group inputfocus, .form-group textareafocus { outline none; border-color #667eea; } .form-group textarea { resize vertical; min-height 150px; } .submit-btn { width 100%; padding 18px; background linear-gradient(135deg, #00ff88 0%, #00cc6f 100%); color #1a1a1a; border none; border-radius 8px; font-size 1.1rem; font-weight 700; cursor pointer; transition transform 0.2s ease, box-shadow 0.2s ease; } .submit-btnhover { transform translateY(-2px); box-shadow 0 8px 16px rgba(0,255,136,0.3); } .success-message { display none; background #d4edda; color #155724; padding 15px 20px; border-radius 8px; margin-top 20px; border 1px solid #c3e6cb; } .map-container { background white; padding 40px; border-radius 12px; box-shadow 0 4px 6px rgba(0,0,0,0.1); margin-top 40px; } .map-container h2 { color #667eea; margin-bottom 20px; font-size 1.8rem; border-bottom 3px solid #667eea; padding-bottom 10px; } .map-placeholder { background #e1e8ed; height 400px; border-radius 8px; display flex; align-items center; justify-content center; color #666; font-size 1.1rem; } footer { background #1a1a1a; color #999; padding 30px 20px; text-align center; margin-top 60px; } footer a { color #667eea; text-decoration none; margin 0 10px; } footer ahover { text-decoration underline; } @media (max-width 968px) { .contact-grid { grid-template-columns 1fr; } } @media (max-width 768px) { .header h1 { font-size 2rem; } .contact-info-box, .form-container { padding 30px 20px; } h2 { font-size 1.5rem; } } style head body div class=header a href=index.html class=back-link← Back to Homea h1Contact Ush1 pLet's discuss how we can elevate your businessp div div class=container div class=contact-grid div class=contact-info-box h2Get In Touchh2 div class=info-item h3πŸ“ Office Addressh3 p Global Advertising LLCbr 30 N Gould Streetbr Sheridan, Wyoming 82801br United States p div div class=info-item h3πŸ“§ Emailh3 pa href=mailtoadmin@globaladvertising.coadmin@globaladvertising.coap div div class=info-item h3⏰ Business Hoursh3 p Monday - Friday 900 AM - 600 PM MSTbr Saturday - Sunday Closed p div div class=info-item h3πŸš€ What We Doh3 p We specialize in paid social media marketing, helping businesses scale through Facebook Ads, Google Ads, and TikTok advertising campaigns. p div div div class=form-container h2Send Us a Messageh2 form id=contactForm div class=form-group label for=nameYour Name label input type=text id=name name=name required placeholder=John Doe div div class=form-group label for=emailYour Email label input type=email id=email name=email required placeholder=john@example.com div div class=form-group label for=companyCompany Name (Optional)label input type=text id=company name=company placeholder=Your Company div div class=form-group label for=phonePhone Number (Optional)label input type=tel id=phone name=phone placeholder=+1 (555) 123-4567 div div class=form-group label for=messageYour Message label textarea id=message name=message required placeholder=Tell us about your business and how we can help...textarea div button type=submit class=submit-btn Send Message β†’ button div class=success-message id=successMessage βœ“ Thank you for your message! We'll get back to you within 24 hours. div form div div div class=map-container h2Our Locationh2 div class=map-placeholder πŸ“ 30 N Gould Street, Sheridan, Wyoming 82801, United States div div div footer pΒ© 2023 Global Advertising LLC - All Rights Reservedp div style=margin-top 20px; a href=index.htmlHomea a href=privacy.htmlPrivacy Policya a href=terms.htmlTerms of Servicea a href=contact.htmlContact Usa div footer script document.getElementById('contactForm').addEventListener('submit', function(e) { e.preventDefault(); Show success message document.getElementById('successMessage').style.display = 'block'; Reset form this.reset(); Hide message after 5 seconds setTimeout(function() { document.getElementById('successMessage').style.display = 'none'; }, 5000); }); script body html