Privacy Policy | E&K Contracting - Vancouver WA /* CSS Reset & Variables */ :root { --primary: #1B4B73; --primary-dark: #0F3559; --primary-light: #2B5F8A; --accent: #4A9B5E; --accent-dark: #3F8650; --white: #FFFFFF; --black: #1A1A1A; --gray-50: #FAFAFA; --gray-100: #F5F5F5; --gray-200: #E5E5E5; --gray-300: #D4D4D4; --gray-400: #A3A3A3; --gray-500: #737373; --gray-600: #525252; --gray-700: #404040; --gray-800: #262626; --gray-900: #171717; --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1); --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1); --radius: 8px; --radius-lg: 12px; --transition: 0.3s ease; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--font-body); color: var(--gray-700); line-height: 1.6; background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; } h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary); line-height: 1.2; font-weight: 700; } h1 { font-size: clamp(2rem, 5vw, 3.5rem); } h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); } h3 { font-size: clamp(1.5rem, 3vw, 2rem); } a { color: var(--primary); text-decoration: none; } a:hover { text-decoration: underline; } img { max-width: 100%; height: auto; } .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; } /* Skip Link */ .skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: var(--white); padding: 8px; z-index: 100; } .skip-link:focus { top: 0; } /* Header */ .header { position: sticky; top: 0; background: var(--white); box-shadow: var(--shadow); z-index: 1000; } .header-top { background: var(--primary); color: var(--white); padding: 0.5rem 0; font-size: 0.875rem; } .header-top-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; } .header-info { display: flex; gap: 1.5rem; flex-wrap: wrap; } .header-info a { color: var(--white); } .trust-badges { display: flex; gap: 1rem; } /* Navigation */ .nav { background: var(--white); } .nav-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; } .logo img { height: 50px; } .nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; } .nav-menu a { color: var(--gray-700); font-weight: 600; padding: 0.5rem 0; position: relative; } .nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width var(--transition); } .nav-menu a:hover::after { width: 100%; } /* Dropdown */ .dropdown { position: relative; } .dropdown-toggle::after { content: '▾'; margin-left: 0.25rem; font-size: 0.75rem; } .dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 280px; max-width: 350px; box-shadow: var(--shadow-xl); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all var(--transition); border-radius: var(--radius); padding: 0.5rem 0; margin-top: 0.5rem; list-style: none; max-height: 70vh; overflow-y: auto; } .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); } .dropdown-menu a { display: block; padding: 0.5rem 1.5rem; color: var(--gray-700); font-weight: 500; font-size: 0.875rem; transition: all var(--transition); } .dropdown-menu a strong { font-weight: 700; color: var(--primary); } .dropdown-menu li[style*="border-top"] { margin-top: 0.5rem; padding-top: 0.5rem; } .dropdown-menu a:hover { background: var(--gray-50); color: var(--primary); } .dropdown-menu a::after { display: none; } /* Buttons */ .btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 600; transition: all var(--transition); border: 2px solid transparent; cursor: pointer; text-decoration: none; } .btn:hover { text-decoration: none; transform: translateY(-2px); } .btn-primary { background: var(--accent); color: var(--white); } .btn-primary:hover { background: var(--accent-dark); box-shadow: var(--shadow-lg); } .btn-secondary { background: var(--primary); color: var(--white); } .btn-secondary:hover { background: var(--primary-dark); box-shadow: var(--shadow-lg); } /* Nav CTA */ .nav-cta { display: flex; gap: 1rem; align-items: center; } /* Mobile Menu */ .mobile-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 0.5rem; } .mobile-toggle span { width: 25px; height: 3px; background: var(--primary); transition: all var(--transition); } /* Breadcrumb */ .breadcrumb { background: var(--gray-50); padding: 1rem 0; border-bottom: 1px solid var(--gray-200); } .breadcrumb-nav { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; } .breadcrumb-nav a { color: var(--gray-600); } .breadcrumb-nav span { color: var(--gray-400); } /* Page Header */ .page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 60px 0; color: var(--white); text-align: center; } .page-header h1 { color: var(--white); margin-bottom: 1rem; } .page-header p { font-size: 1.125rem; opacity: 0.95; } /* Privacy Content */ .privacy-content { padding: 80px 0; } .content-wrapper { max-width: 800px; margin: 0 auto; } .last-updated { color: var(--gray-600); font-size: 0.875rem; margin-bottom: 2rem; padding: 1rem; background: var(--gray-50); border-radius: var(--radius); text-align: center; } .privacy-section { margin-bottom: 3rem; } .privacy-section h2 { margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gray-200); } .privacy-section h3 { font-size: 1.25rem; margin: 2rem 0 1rem; color: var(--gray-800); } .privacy-section p { margin-bottom: 1rem; line-height: 1.8; } .privacy-section ul, .privacy-section ol { margin: 1rem 0 1.5rem 2rem; } .privacy-section li { margin-bottom: 0.5rem; line-height: 1.8; } .contact-info { background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg); margin-top: 3rem; } .contact-info h3 { margin-bottom: 1rem; } .contact-info p { margin-bottom: 0.5rem; } .contact-info a { color: var(--primary); font-weight: 600; } /* Footer */ .footer { background: var(--gray-900); color: var(--white); padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; } .footer-section h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 1.5rem; } .footer-section p, .footer-section a { color: rgba(255, 255, 255, 0.8); text-decoration: none; line-height: 1.8; } .footer-section a:hover { color: var(--accent); } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 0.75rem; } .footer-logo { height: 40px; margin-bottom: 1rem; } .footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 2rem; text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; } /* Mobile Styles */ @media (max-width: 1024px) { .nav-menu { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background: var(--white); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 80px 2rem 2rem; transition: left var(--transition); overflow-y: auto; z-index: 999; } .nav-menu.active { left: 0; } .nav-menu li { width: 100%; margin-bottom: 0.5rem; } .nav-menu a { display: block; width: 100%; padding: 0.75rem 0; } .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--gray-50); display: none; margin: 0; max-height: none; overflow-y: visible; padding: 0; margin-left: 1rem; } .dropdown.active .dropdown-menu { display: block; } .mobile-toggle { display: flex; } .nav-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 1rem; box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1); z-index: 1000; gap: 0.5rem; border-top: 1px solid var(--gray-200); } .nav-cta .btn { flex: 1; font-size: 0.875rem; padding: 0.75rem 1rem; } .footer-content { grid-template-columns: 1fr; gap: 2rem; } } @media (max-width: 768px) { .header-top { display: none; } .content-wrapper { padding: 0 1rem; } .toc { padding: 1.5rem; } .privacy-section { margin-bottom: 2rem; } .privacy-section h2 { font-size: 1.5rem; } } Skip to main content
3515 Thompson Ave, Vancouver, WA Mon-Fri: 8AM-6PM ekllc@live.com
✓ Licensed & Insured ✓ Free Estimates ✓ Family Owned
E&K Contracting
  • Home
  • Services
    • Painting Services
    • Interior Painting
    • Exterior Painting
    • Cabinet Painting
    • Deck Staining
    • Gutter Services
    • Seamless Gutters
    • Gutter Repair
    • Gutter Cleaning
    • Gutter Guards
    • Drywall Services
    • Drywall Installation
    • Texture Matching
    • Water Damage Repair
    • Siding Services
    • Vinyl Siding
    • Fiber Cement
    • Siding Repair
    • Trim Work
    • Roofing Services
    • Roof Inspection
    • Leak Repair
    • Shingle Replacement
    • Flashing Repair
  • Service Areas
  • About
  • Reviews
  • FAQ
  • Contact
(360) 910-9205 Free Quote
Home › Privacy Policy

Privacy Policy

Your privacy is important to us at E&K Contracting

Last Updated: January 1, 2025

Overview

E&K Contracting LLC ("we," "our," or "us") respects your privacy and is committed to protecting your personal information. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website eandkcontracting.com or use our services.

By using our website or services, you consent to the data practices described in this policy. If you do not agree with the terms of this privacy policy, please do not access our website or use our services.

Information We Collect

Personal Information You Provide

We may collect personal information that you voluntarily provide to us when you:

  • Request a quote or estimate through our forms
  • Contact us via email, phone, or contact forms
  • Subscribe to our newsletter or updates
  • Schedule a service appointment
  • Leave a review or testimonial

This information may include:

  • Name and contact information (email address, phone number, mailing address)
  • Property address for service locations
  • Service preferences and project details
  • Payment information (processed securely through third-party providers)
  • Any other information you choose to provide

Information Automatically Collected

When you visit our website, we may automatically collect certain information about your device and browsing actions:

  • IP address and location data
  • Browser type and version
  • Operating system
  • Pages visited and time spent on pages
  • Referring website addresses
  • Device information and identifiers

How We Use Your Information

We use the information we collect for various business purposes, including:

  • To provide and manage our contracting services
  • To process and respond to your inquiries and quote requests
  • To schedule and coordinate service appointments
  • To send you important updates about your projects
  • To improve our website and service offerings
  • To send promotional communications (with your consent)
  • To comply with legal obligations
  • To protect our rights and prevent fraud
  • To analyze website usage and optimize user experience

Information Sharing

We do not sell, trade, or rent your personal information to third parties. We may share your information in the following situations:

  • Service Providers: We may share information with trusted third-party service providers who assist us in operating our website, conducting our business, or servicing you (e.g., payment processors, email service providers)
  • Legal Requirements: We may disclose information when required by law, court order, or government regulations
  • Business Protection: We may share information to protect our rights, property, or safety, or that of others
  • Business Transfers: In the event of a merger, acquisition, or sale of assets, your information may be transferred
  • Consent: We may share information with your explicit consent

Data Security

We implement appropriate technical and organizational security measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction. These measures include:

  • SSL encryption for data transmission
  • Secure storage of personal information
  • Limited access to personal information by authorized personnel only
  • Regular security assessments and updates

However, no method of transmission over the internet or electronic storage is 100% secure. While we strive to protect your personal information, we cannot guarantee absolute security.

Cookies and Tracking Technologies

We use cookies and similar tracking technologies to enhance your experience on our website. Cookies are small data files stored on your device that help us:

  • Remember your preferences and settings
  • Understand how you use our website
  • Improve website functionality and performance
  • Deliver relevant content and advertisements

Types of Cookies We Use:

  • Essential Cookies: Required for website functionality
  • Analytics Cookies: Help us understand website usage (e.g., Google Analytics)
  • Marketing Cookies: Used to deliver relevant advertisements

You can control cookie settings through your browser preferences. Note that disabling cookies may affect website functionality.

Third-Party Services

Our website may contain links to third-party websites and services. We are not responsible for the privacy practices of these third parties. We encourage you to read their privacy policies before providing any personal information.

Third-Party Services We Use:

  • Google Analytics: For website analytics
  • Google Maps: For location services
  • Formspree: For form submissions
  • Social Media Platforms: For social sharing and reviews

Your Rights

You have certain rights regarding your personal information:

  • Access: Request access to your personal information
  • Correction: Request correction of inaccurate information
  • Deletion: Request deletion of your personal information
  • Opt-Out: Opt-out of marketing communications
  • Data Portability: Request a copy of your data in a portable format

To exercise these rights, please contact us using the information provided below.

Children's Privacy

Our website and services are not intended for children under the age of 13. We do not knowingly collect personal information from children under 13. If we become aware that we have collected personal information from a child under 13, we will take steps to delete such information.

Changes to This Privacy Policy

We may update this Privacy Policy from time to time to reflect changes in our practices or for legal, operational, or regulatory reasons. We will notify you of any material changes by:

  • Updating the "Last Updated" date at the top of this policy
  • Posting a notice on our website
  • Sending you an email notification (if we have your email address)

We encourage you to review this Privacy Policy periodically for any changes.

Contact Information

If you have any questions, concerns, or requests regarding this Privacy Policy or our data practices, please contact us:

E&K Contracting LLC

Address: 3515 Thompson Ave, Vancouver, WA 98660

Phone: (360) 910-9205

Email: ekllc@live.com

Business Hours: Monday - Friday, 8:00 AM - 6:00 PM PST

E&K Contracting

Vancouver Washington's trusted family contractors since 2002. Quality craftsmanship, honest pricing, and exceptional service.

3515 Thompson Ave
Vancouver, WA 98660

(360) 910-9205
ekllc@live.com

Mon-Fri: 8AM-6PM

Our Services

  • Interior Painting
  • Exterior Painting
  • Gutter Installation
  • Gutter Cleaning
  • Drywall Services
  • Siding Services
  • Roofing Services

Service Areas

  • Vancouver, WA
  • Battleground, WA
  • Camas, WA
  • Woodland, WA
  • Ridgefield, WA
  • La Center, WA
  • All Service Areas

Company

  • About Us
  • Reviews
  • FAQ
  • Project Gallery
  • Warranty
  • Privacy Policy
  • Terms of Service

© 2025 E&K Contracting LLC. All rights reserved. | Privacy | Terms | Sitemap