/* base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: disc;
    text-decoration: none;
}

main a {
    color: black;
}
a:visited {
    color: #c02c03;
}
a:hover {
    color: #A02502;
}

body {
    background-color: rgb(255, 255, 255);
    font-family: sans-serif;
}

a[href^="tel"] {
  color: #000 !important;
}

a[href^="mailto"] {
  color: #000 !important;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px;
}

.logo {
    margin-right: auto;
}

.resized-img {
  width: 250px;
  height: auto;
}

/* Container to stack label above hamburger */
.menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    cursor: pointer;
}

/* Style for the "MENU" text */
.menu-label {
    font-size: 1rem;
    color: #808080;
    margin-bottom: 2px;
    font-weight: bold;
    text-align: right;
}

/* off-screen-menu */
.off-screen-menu {
    background-color: rgb(0, 0, 0);
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    transition: .3s ease;
}
.off-screen-menu.active {
    right: 0;
}

.off-screen-menu a {
    color: white;
}
a:visited {
    color: #c02c03;
}
a:hover {
    color: #808080;
}

/* nav */
nav {
    padding: 1rem;
    display: flex;
    background-color: rgb(0, 0, 0);
}

/* ham menu */
.ham-menu {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
}
.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #808080;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: white;
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

main {
    max-width: 1500px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.container {
    display: flex;
    align-items: start;
    gap: 40px;
}

.left-side {
    flex: 1;
}

.right-side {
    flex: 2;
}

.left-side img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .left-side img {
    max-height: 300px;
    width: auto;
    margin: 0 auto 20px auto;
  }
}

h1 {
    color: #333;
}

p {
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}

ul li, ol li {
  list-style-position: inside;
}

/* =====================
   BUTTONS — Consistent rounded style
   ===================== */

.cta-container {
  margin: 40px 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  font-family: sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease;
}

/* Primary: outlined red, rounds to filled on hover */
.cta-button.primary {
  background-color: transparent;
  color: #c02c03;
  padding: 14px 28px;
  border: 2px solid #c02c03;
}

.cta-button.primary:hover {
  background-color: #c02c03;
  color: #fff;
  border: 2px solid #c02c03;
}

/* Secondary: filled red */
.cta-button.secondary {
  background-color: #c02c03;
  color: #fff;
  border: 2px solid #c02c03;
  padding: 12px 26px;
}

.cta-button.secondary:hover {
  background-color: transparent;
  color: #c02c03;
  border: 2px solid #c02c03;
}

/* FAQ bottom CTA button — now matches primary */
.cta a {
  display: inline-block;
  background-color: transparent;
  color: #c02c03;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid #c02c03;
  font-size: 1.05em;
  font-weight: 600;
  transition: 0.2s ease;
}

.cta a:visited {
  color: #c02c03;
}

.cta a:hover {
  background-color: #c02c03;
  color: #fff;
}

/* Form submit button — filled red, rounded */
.pt-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #c02c03;
    border-radius: 25px;
    background: #c02c03;
    color: #fff;
    cursor: pointer;
    transition: 0.2s ease;
}

.pt-submit:hover {
    background: transparent;
    color: #c02c03;
}

/* =====================
   FORM
   ===================== */

.pt-form {
    max-width: 500px;
    padding: 20px;
    margin-top: 24px;
    font-family: inherit;
}

.pt-field {
    margin-bottom: 16px;
}

.pt-field label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    color: #111;
}

.pt-field input,
.pt-field textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #bbb;
    border-radius: 5px;
    background: #fff;
    font-family: inherit;
    transition: 0.2s ease;
}

.pt-field textarea {
    min-height: 100px;
    resize: vertical;
}

.pt-field input:focus,
.pt-field textarea:focus {
    border-color: #c0392b;
    box-shadow: 0 0 4px rgba(192,57,43, 0.25);
    outline: none;
}

/* =====================
   FAQ
   ===================== */

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.15em;
}

.cta {
  text-align: center;
  margin-top: 50px;
}

/* =====================
   PRICING
   ===================== */

.pricing-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  background-color: #fafafa;
}

.price {
  font-size: 1.4em;
  font-weight: bold;
  margin: 10px 0;
  color: #000;
}

.highlight {
  border-left: 4px solid #c02c03;
  padding: 16px 20px;
  background-color: #fafafa;
  border-radius: 4px;
  margin-top: 10px;
}

/* =====================
   PAGE CONTENT LISTS — Bullets Spacing & Branding
   ===================== */
.content-list {
    list-style-type: square;        /* square bullets */
    list-style-position: outside;    /* bullets outside text for readability */
    margin: 0.8em 0 1em 1.8em;       /* space above, below, and indent */
    padding: 0;
    line-height: 1.6;               /* breathing room */
    color: #666;                     /* matches paragraph text */
    font-size: 1rem;                 /* same as body text */
}

/* Space between list items */
.content-list li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 0.4em;            /* small indent for bullet alignment */
}

/* Make bullets red to match branding */
.content-list li::marker {
    color: #c02c03;                 /* brand color */
    font-weight: bold;               /* slightly heavier bullet */
}