/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    box-sizing: border-box;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-logo {
    max-width: 150px;
}

.navigation {
    display: flex;
    gap: 20px;
}

.tab {
    color: #005250;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}
.tab:hover {
    text-decoration: underline;
}


.hero-text {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: #005250;
    text-shadow: none;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    padding-bottom: 80px;
    gap: 20px;
}

.info-box {
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}
.info-box h2 {
    color: #002060;
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
}

.info-box p {
    color: #333;
    font-size: 18px;
    margin: 10px 0 0;
}

footer {
    background-color: #005250;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Our Device Section */
.our-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.device-heading {
    color: #002060;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.device-info {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.device-image {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.device-text {
    font-size: 24px;
    color: #002060;
    max-width: 50%;
}

/* New styles for the list */
.device-points {
    margin-top: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.device-points li {
font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .navigation {
        gap: 10px;
        flex-wrap: wrap;
    }

    .company-logo {
        max-width: 120px;
    }

    .hero-text {
        font-size: 28px;
    }

    .info-boxes {
        padding: 10px;
        padding-bottom: 60px;
    }

    .info-box {
 max-width: 90%;
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none; /* Hide navigation for mobile */
    }

    .our-device {
        flex-direction: column;
        padding: 20px 10px;
    }

    .device-image,
    .device-text {
        max-width: 100%;
        margin-right: 0; /* Remove margin on smaller screens */
        text-align: center; /* Center text for mobile view */
    }

    .device-text {
        font-size: 18px;
    }

    .device-points {
        padding-left: 0; /* Remove padding for mobile */
    }

    .hero-text {
        font-size: 24px;
    }
 .info-box h2 {
        font-size: 20px;
    }

    .info-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tab {
        font-size: 14px;
    }

    .hero-text {
        font-size: 20px;
    }

    .info-box h2 {
        font-size: 18px;
    }

    .info-box p {
        font-size: 14px;
    }

    .device-heading {
        font-size: 20px;
    }
.device-text {
        font-size: 16px;
    }

    .device-points li {
        font-size: 16px;
    }
}

/* Mobile Menu Toggle */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: #005250;
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .navigation {
        display: none;
    }

    #menu-toggle:checked + .menu-icon + .navigation {
        display: flex;
flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
    }
}

/* General styling for About Section */
.about-section {
    padding: 40px 20px;
    background-color: #F2F2F2; /* Updated background color */
    text-align: center;
    margin-bottom: 60px;
}

/* Container for each about item */
.about-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    max-width: 1000px; /* Ensures the container does not stretch too wide */
    margin-left: auto;
    margin-right: auto;
}

/* Ensure all images are the same size */
.about-image {
    width: 100%;
    max-width: 300px; /* Sets a maximum width for images */
    height: auto; /* Maintains aspect ratio */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 20px; /* Space between image and text */
}

/* Text styling for each about item */
.about-text {
    max-width: 600px; /* Sets a maximum width for text to avoid stretching */
    text-align: left; /* Align text to the left */
}

.about-text h2 {
    font-size: 24px;
    color: #002060;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* For the "What we do" section */
.about-logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.company-logo-small {
    width: 80px; /* Adjusted size for the logo */
    height: auto;
    margin-right: 20px; /* Space between logo and text */
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-image {
        max-width: 200px; /* Adjust image size for smaller screens */
    }
    .company-logo-small {
        width: 50px; /* Smaller logo size on mobile */
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 20px;
    }
    .about-text p {
        font-size: 16px;
    }
}
/* Container for the info box */
.info-box {
    width: 100%; /* Makes the box stretch across the full width */
    background-color: #ffffff; /* Background color of the box */
    padding: 20px; /* Add padding inside the box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow to the box */
    border-radius: 8px; /* Optional: rounded corners for the box */
    margin: 0 auto; /* Ensures the box is centered */
}

/* Specific styling for large text */
.large-text {
    font-size: 85px; /* Increase font size by 3 times (adjust if necessary) */
    color: #005250; /* Adjust color if needed */
    font-weight: bold; /* Optional: make the text bold */
    line-height: 1.5; /* Optional: adjust line height for better readability */
}

/* General styling for Services Section */
.services-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto 80px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.services-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 38px;
  color: #005250;
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: center;
}
.service-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.step-number { font-weight: bold; margin-bottom: 10px; font-size: 28px; color: #002060; }
.service-image { width: 250px; height: auto; margin-bottom: 10px; border-radius: 8px; }
.service-text { font-size: 24px; line-height: 1.5; color: #002060; }
.summary-line {
  text-align: center; font-weight: bold; margin-top: 30px; padding: 20px;
  background-color: #BFBFBF; color: #002060; border-radius: 5px; margin-bottom: 80px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .steps-container { grid-template-columns: 1fr; }
  .service-step { padding: 10px; }
  .service-image { width: 120px; }
}



/* General section styling */
.contact-section {
    background-color: #F2F2F2; /* Matches the background color from your 'About' page */
    padding: 40px 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

/* Section Title */
.contact-title {
    font-size: 28px;
    color: #002060; /* Consistent with the updated 'Welcome to Split Diagnostics' color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Intro Text */
.contact-intro {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

/* Contact Details Styling */
.contact-details {
    text-align: center;
    font-size: 16px;
    color: #444;
}

.contact-details p {
    margin: 10px 0;
}

.contact-details a {
    color: #005250; /* Matches the 'ABPM Device' text color */
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Call to Action Text */
.cta {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: #005250; /* Consistent with your overall theme */
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .cta {
        font-size: 14px;
}
}
}



/* Reservation Section Styling */
.reservation-section {
    background-color: #ffffff; /* White background for the section */
    padding: 40px 20px;
    max-width: 800px; /* Max width of the section */
    margin: 50px auto; /* Center the section */
    margin-bottom: 100px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}
/* Center content in the container using Flexbox */
.container {
    display: flex; /* Enable flexbox layout */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    background-color: #F2F2F2; /* White background for the section */
    padding: 40px 20px;
    max-width: 400px; /* Max width of the section */
    margin: 50px auto; /* Center the section */
    margin-bottom: 100px;
    border-radius: 10px; /* Rounded corners */
}
/* Section Title */
.section-title {
    font-size: 20px; /* Larger title */
    color: #005250; /* Header color */
    text-align: center; /* Center align title */
    margin-bottom: 10px; /* Space below the title */
}

/* Section Intro */
.section-intro {
    text-align: center; /* Center align intro text */
    font-size: 18px; /* Intro text size */
    color: #666; /* Gray color for softer appearance */
    margin-bottom: 30px; /* Space below intro text */
}

/* Form Group Styling */
.form-group {
    margin-bottom: 15px; /* Space between form groups */
}

/* Label Styling */
.form-group label {
    font-weight: bold; /* Bold labels for better visibility */
    margin-bottom: 5px; /* Space below labels */
    display: block; /* Make label a block element */
}

/* Input and Textarea Styling */
input[type="email"],
input[type="text"],
input[type="file"] {
    width: 80%; /* Full width inputs */
    padding: 5px; /* Padding inside inputs */
    border: 1px solid #d1d1d1; /* Border style */
    border-radius: 5px; /* Rounded inputs */
 font-size: 16px; /* Input text size */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Slight inner shadow */
}

/* Focus effect on inputs */
input[type="email"]:focus,
input[type="text"]:focus {
    border-color: #005250; /* Change border color on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 82, 80, 0.5); /* Highlight effect */
}

/* Button Styling */
.btn-submit {
    background-color: #005250; /* Button background color */
    color: white; /* Button text color */
    padding: 12px; /* Button padding */
    font-size: 18px; /* Button text size */
    border: none; /* No border */
    border-radius: 5px; /* Rounded button */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition */
    width: 100%; /* Full width button */
}

/* Button hover effect */
.btn-submit:hover {
    background-color: #003f3d; /* Darker shade on hover */
}
.service-fee-box {
    background-color: #F9F9F9;
    border: 1px solid #DDD;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-fee-box h2 {
    color: #005250;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-fee-box ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Footer styling: clean, minimal, consistent across all pages */
footer {
  background: none; /* Remove any bulky background */
  color: #333; /* Match other pages; adjust as needed */
  text-align: center;
  padding: 0.5rem 0; /* Keeps it slim */
  font-size: 14px;
  line-height: 1.4;
  position: relative; /* Ensures it stays at bottom naturally */
  width: 100%; 
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; /* Optional: maintain horizontal consistency */
}

/* Device image */
.device-image img {
  display: block;
  max-width: 400px;  /* smaller than hero */
  width: 100%;
  height: auto;
  margin: 0 auto; /* center align */
  border-radius: 8px;
}

/* Responsive layout for device section */
.device-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.device-text {
  flex: 1 1 300px;
  max-width: 500px;
  font-size: 14px;
  line-height: 1.6;
}
.device-image img {
  max-width: 100%;
  height: auto !important;
  width: 100% !important;
  display: block;
  margin: 0 auto;
}


.device-image img {
  max-width: 400px; /* desktop limit */
}
/* Device section layout */
.device-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.device-text {
  flex: 1 1 50%;
  max-width: 550px;
  font-size: 14px;
  line-height: 1.6;
}

.device-image {
  flex: 1 1 40%;
  text-align: right;
}

.device-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Mobile behavior: stack text over image */
@media (max-width: 768px) {
  .device-info {
    flex-direction: column;
    text-align: center;
  }
  .device-text, 
  .device-image {
    flex: 1 1 100%;
    text-align: center;
  }
}
/* Device Validation Section */
.device-validation {
    text-align: center;
    background-color: #f9f9f9;  /* soft neutral background */
    padding: 60px 20px;
}

.device-validation h2 {
    font-size: 32px;
    font-weight: 700;
    color: #005250; /* professional medical green */
    margin-bottom: 20px;
}

.device-validation p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
}
/* Keep hero stacked; just constrain overall width a bit */
.hero {
  max-width: 960px;        /* keeps the whole hero from going edge-to-edge */
  margin: 0 auto;
  padding: clamp(16px, 4vw, 32px) 16px;
}

/* Text block spacing */
.hero-content { margin-bottom: 12px; }

/* Image: full-width on mobile, capped on desktop, centered */
.hero-image {
  display: block;
  width: 100%;
  max-width: clamp(320px, 36vw, 560px);  /* << key line: never huge on desktop */
  height: auto;
  margin: 12px auto 0;
  border-radius: 8px;
}

/* Optional: on very wide screens, keep it a touch smaller */
@media (min-width: 1440px) {
  .hero-image { max-width: 520px; }
}
/* Center the whole text block inside the hero */
.hero-content {
  text-align: center;
}


/* ==== OUR DEVICE — alignment + sizing fix ==== */

/* Make the section itself be the nice, wide card */
.our-device {
  max-width: 72rem;           /* page width cap */
  margin: 20px auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: block;             /* override any earlier flex */
}

/* Kill global .container constraints here and use a grid */
.our-device .container.device-info {
  max-width: none;
  background: transparent;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 420px;  /* text | image */
  align-items: center;
  gap: 2rem;
  text-align: left;
}

/* Text column */
.our-device .device-text {
  max-width: 65ch;            /* readable lines */
  color: #002060;
  font-size: 18px;
  line-height: 1.6;
}

/* Image column */
.our-device .device-image { margin: 0; text-align: right; }
.our-device .device-image img {
  width: 100%;
  max-width: 420px;           /* hard cap so it aligns with grid */
  height: auto;
  border-radius: 8px;
}

/* Mobile: stack neatly */
@media (max-width: 768px) {
  .our-device .container.device-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .our-device .device-image { text-align: center; }
}

/* ==== BENEFITS SECTION ALIGNMENT FIX (paste at end of styles.css) ==== */

/* Use a wide, centered container for the benefits section */
.info-boxes > .container {
  max-width: 72rem;            /* ~1152px; matches the rest of the site cap */
  margin-inline: auto;
  padding-inline: 16px;

  /* Grid for heading + cards */
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;         /* equal height cards */
}

/* Make the "Benefits" heading span the full grid width and center it */
.info-boxes > .container > h2 {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0 0 8px;
  font-size: 28px;              /* adjust to taste */
  color: #002060;
}

/* Card styling: force consistent layout/height */
.info-boxes .info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 20px;
  height: 100%;
  width: 100%;                  /* override earlier width quirks */
  max-width: none;              /* remove 600px cap so grid controls width */
  text-align: center;
}

/* Your cards use <h3>, not <h2> — style accordingly */
.info-boxes .info-box h3 {
  color: #002060;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}
.info-boxes .info-box p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Optional: force exactly two cards per row on desktop (instead of auto-fit) */
@media (min-width: 900px) {
  /* Uncomment if you want exactly two columns
  .info-boxes > .container { grid-template-columns: repeat(2, 1fr); }
  */
}

/* IMPORTANT: stop the global .container (used for the Reservation box) from
   shrinking the Benefits container. Scope the small 400px container ONLY there. */
.reservation-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F2F2F2;
  padding: 40px 20px;
  max-width: 400px;
  margin: 50px auto 100px;
  border-radius: 10px;
}
/* ==== BENEFITS: stack cards vertically ==== */
.info-boxes > .container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 16px;

  /* stack, not grid */
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers each card */
  gap: 16px;             /* space between cards */
}

/* make each card a readable width and full width on small screens */
.info-boxes .info-box {
  width: 100%;
  max-width: 65ch;       /* ~readable line length; change to 600–720px if you prefer */
  margin: 0 auto;
}
/* ==== BENEFITS — mobile fix (stack, full width, readable) ==== */
@media (max-width: 600px) {
  /* Make the wrapper stretch, not center a narrow column */
  .info-boxes > .container {
    align-items: stretch;      /* children fill width */
    padding-inline: 12px;      /* comfy side padding */
    gap: 12px;                 /* tighter spacing on phones */
    max-width: 100%;           /* avoid any global 400px caps */
  }

  /* Each card takes full width; text easier to read */
  .info-boxes .info-box {
    width: 100%;
    max-width: none;           /* override desktop 65ch cap */
    text-align: left;          /* paragraphs read better on mobile */
    padding: 16px;
  }

  .info-boxes .info-box h3 { font-size: 18px; margin: 0 0 6px; }
  .info-boxes .info-box p  { font-size: 15px; line-height: 1.55; }
}

/* Our Device Section */
.our-device {
  background-color: #f8f9fa;
  padding: 3rem 1rem;
}

.device-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* allows stacking on small screens */
}

.device-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.device-text {
  flex: 1;
  min-width: 300px;
}

.device-heading {
  font-size: 1.8rem;
  color: #005250;
  font-weight: bold;
  margin-bottom: 1rem;
}

.device-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.device-points li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .device-info {
    flex-direction: column;
    text-align: center;
  }

  .device-image img {
    max-width: 300px;
    margin: 0 auto;
  }

  .device-text {
    text-align: center;
  }
}
/* ===== Booking & Consent (scoped) ===== */
.booking-page .container {
  max-width: 820px;
  width: 100%;
  margin: 24px auto 80px;
  padding: 0 16px;
  box-sizing: border-box;
}

.booking-page .section-title {
  font-size: 28px;
  color: #005250;
  margin: 0 0 6px;
  text-align: center;
}

.booking-page .section-intro {
  text-align: center;
  color: #555;
  margin: 6px 0 16px;
}

.booking-page .card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  margin-top: 12px;
}

.booking-page details > summary {
  cursor: pointer;
  font-weight: 600;
  color: #002060;
}
.booking-page details[open] summary { margin-bottom: 8px; }

.booking-page .consent-text p { line-height: 1.55; margin: 0 0 10px; }

.booking-page .form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.booking-page label { font-weight: 600; font-size: 0.95rem; }

.booking-page input,
.booking-page select,
.booking-page button {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
}

.booking-page button {
  cursor: pointer;
  border: none;
  background: #005250;
  color: #fff;
  font-weight: 700;
}
.booking-page button:hover { filter: brightness(0.95); }
.booking-page button:disabled { opacity: .55; cursor: not-allowed; }

.booking-page button.secondary {
  background: #f3f3f3;
  color: #333;
  border: 1px solid #ddd;
}

.booking-page .btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.booking-page .checkbox-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.booking-page .note { color: #666; font-size: .92rem; }

.booking-page .summary {
  margin-top: 16px;
}
.booking-page .summary-row {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.booking-page .summary-row.total {
  font-weight: 800;
  border-top: 1px dashed #ddd;
  padding-top: 8px;
}
.booking-page .hidden { display: none; }

