  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #2d1f0c; /* deep brownish text for contrast */
    background: url('vecteezy_bottle-of-beer-on-wooden-table_45987303.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
  }

  /* === Overlay for readability === */
  .overlay {
    background: rgba(245, 230, 200, 0.3); /* warm amber overlay */
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  header {
    text-align: center;
  }

  header img {
    max-width: 160px;
  }

  h1 {
    font-size: 2rem;
    color: #812020; /* warm red tone from the ad */
  }

  h2 {
    font-size: 1.25rem;
    color: #444;
  }

  .section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem auto;
    background: #fff8f2;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  /* Video section specific styling */
  .video-section {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
  }

  .video-section iframe {
    max-width: 100%;
    height: 600px;
  }

  .section h3 {
    color: #0b5c4a; /* teal accent */
    margin-bottom: 1rem;
  }

  .section ul {
    list-style: none;
  }

  .section ul li {
    margin-bottom: 0.75rem;
  }

  /* === Call to Action Button === */
  .cta {
    text-align: center;
  }

  .cta a {
    display: inline-block;
    background: linear-gradient(135deg, #f4a623, #d96d00); /* amber/orange gradient */
    color: #fff;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  }

  /* === Pardon Our Dust Statement === */
  .notice {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    text-align: center;
    background: rgba(255,255,255,0.85);
    border-radius: 10px;
    padding: 1.25rem;
    font-style: italic;
    color: #5a3a1e;
    border: 2px dashed #d96d00;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer {
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
    margin-top: 1rem;
  }
/* === Call to Action Section === */

.cta-button {
display: inline-block;
background: linear-gradient(135deg, #f4a623, #d96d00); /* amber/orange gradient */
color: #fff;
padding: 1.25rem 2.5rem;
border-radius: 50px;
font-size: 1.25rem;
text-decoration: none;
font-weight: bold;
letter-spacing: 1px;
margin: 1rem auto;
box-shadow: 0 6px 14px rgba(0,0,0,0.2);
transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.or-divider {
margin: 1.5rem auto;
font-size: 1rem;
font-weight: bold;
color: #812020; /* red tone for emphasis */
}

/* Phone button variant */
.cta-button.phone {
background: linear-gradient(135deg, #0b5c4a, #063f32); /* teal/green for contrast */
}

/* Final CTA button - make it stand out! */
.notice .cta-button,
.cta-button[href*="fareharbor"] {
display: block !important;
font-size: 1.8rem !important;
padding: 1.8rem 3.5rem !important;
margin: 1.5rem auto !important;
background: linear-gradient(135deg, #d96d00, #f4a623, #d96d00) !important;
background-size: 200% 200% !important;
animation: gradientShift 3s ease infinite !important;
box-shadow: 0 8px 20px rgba(217, 109, 0, 0.4) !important;
border: 3px solid #fff !important;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
position: relative !important;
overflow: hidden !important;
text-align: center !important;
width: fit-content !important;
text-decoration: none !important;
}

.notice .cta-button::before,
.cta-button[href*="fareharbor"]::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.5s;
}

.notice .cta-button:hover::before,
.cta-button[href*="fareharbor"]:hover::before {
left: 100%;
}

.notice .cta-button:hover,
.cta-button[href*="fareharbor"]:hover {
transform: translateY(-5px) scale(1.05) !important;
box-shadow: 0 12px 30px rgba(217, 109, 0, 0.6) !important;
}

@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

/* === Contact Form Styles === */
.contact-form {
max-width: 600px;
margin: 2rem auto;
background: rgba(255, 255, 255, 0.95);
border-radius: 12px;
padding: 2rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-form h3 {
color: #0b5c4a;
margin-bottom: 1.5rem;
text-align: center;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #2d1f0c;
font-weight: bold;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 2px solid #ddd;
border-radius: 8px;
font-size: 1rem;
font-family: Arial, sans-serif;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #0b5c4a;
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.form-submit {
background: linear-gradient(135deg, #0b5c4a, #063f32);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
display: block;
margin: 0 auto;
letter-spacing: 1px;
}

.form-submit:hover {
transform: translateY(-2px);
box-shadow: 0 6px 14px rgba(11, 92, 74, 0.3);
}

.form-message {
padding: 1rem;
border-radius: 8px;
margin-bottom: 1.5rem;
text-align: center;
font-weight: bold;
}

.form-message.success {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}

.form-message.error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
  /* === Responsive === */
  @media (max-width: 600px) {
    .section {
      padding: 1rem;
    }

    h1 {
      font-size: 1.5rem;
    }

    .cta a {
      font-size: 1.1rem;
      padding: 1rem 1.5rem;
    }

    /* Mobile video adjustments */
    .video-section iframe {
      height: 400px;
    }

    /* Mobile final CTA adjustments */
    .notice .cta-button,
    .cta-button[href*="fareharbor"] {
      font-size: 1.3rem !important;
      padding: 1.3rem 2.2rem !important;
    }

    /* Mobile contact form adjustments */
    .contact-form {
      margin: 1rem;
      padding: 1.5rem;
    }

    .form-submit {
      font-size: 1rem;
      padding: 0.875rem 1.5rem;
    }
  }