:root {
    --primary-color: #61C038; /* Shopify Green */
    --primary-hover-color: #56aa32; /* Darker Shopify Green */
    --secondary-button-bg: #f0f0f0;
    --secondary-button-text: #333333;
    --secondary-button-hover-bg: #e0e0e0;
    --background-color: #ffffff;
    --text-color: #333333;
    --text-color-secondary: #555555;
    --heading-color: #111111;
    --border-color: #eeeeee;
    --badge-bg-color: #e6f2d9; /* Light Green */
    --badge-text-color: #5E8E3E; /* Darker Green */
    --link-color: var(--primary-color);
    --link-hover-decoration: underline;
}

[data-theme="dark"] {
    --primary-color: #61C038;
    --primary-hover-color: #56aa32; /* Lighter/Brighter Shopify Green */
    --secondary-button-bg: #3a3a3a;
    --secondary-button-text: #e0e0e0;
    --secondary-button-hover-bg: #4a4a4a;
    --background-color: #121212;
    --text-color: #e0e0e0;
    --text-color-secondary: #bbbbbb;
    --heading-color: #ffffff;
    --border-color: #333333;
    --badge-bg-color: #3E642A; /* Dark Muted Green */
    --badge-text-color: #cce6b3; /* Lighter Green Text */
    --link-color: var(--primary-color);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth theme transition */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */

.logo img {
    height: 68px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--background-color); /* Ensure header bg matches body */
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1000;
}

.logo span {
    font-weight: 600;
    font-size: 20px;
    color: var(--heading-color); /* Logo text color */
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Active Nav Link for FAQ Page */
.on-faq-page .nav-menu a[href="faq.html"] {
    position: relative; /* For positioning the dot */
    font-weight: bold; /* Keep font weight indication or remove */
}

.on-faq-page .nav-menu a[href="faq.html"]::after,
.on-features-page .nav-menu a[href="features.html"]::after,
.on-pricing-page .nav-menu a[href="pricing.html"]::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -8px; /* Adjust for vertical position */
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Active Nav Link for Features Page (specific text styling if needed, otherwise combined with FAQ for dot) */
.on-features-page .nav-menu a[href="features.html"] {
    position: relative; /* For positioning the dot */
    font-weight: bold; /* Keep font weight indication or remove */
}

/* Active Nav Link for Pricing Page */
.on-pricing-page .nav-menu a[href="pricing.html"] {
    position: relative; /* For positioning the dot */
    font-weight: bold;
}

/* Buttons */
.button {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent; /* Base for potential bordered buttons */
}

.button-primary {
    background-color: var(--primary-color);
    color: white; /* Assuming white text on primary green is desired for both themes */
}

.button-primary:hover {
    background-color: var(--primary-hover-color);
}

.button-secondary {
    background-color: var(--secondary-button-bg);
    color: var(--secondary-button-text);
    /* border: 1px solid var(--border-color); optional border */
    margin-left: 10px;
}

.button-secondary svg {
    margin-right: 8px;
    fill: currentColor; /* Ensure SVG inherits text color */
}

.button-secondary:hover {
    background-color: var(--secondary-button-hover-bg);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-content-left {
    flex: 1;
    padding-right: 50px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    background-color: var(--badge-bg-color);
    color: var(--badge-text-color);
    margin-bottom: 15px;
}

.hero-content-left h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-subheading {
    font-size: 20px;
    color: var(--text-color-secondary);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
}

.hero-buttons .button-primary,
.hero-buttons .button-secondary {
    height: 68px;
    font-size: 20px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: auto;
    min-width: 200px;
}

.hero-buttons .button-secondary svg {
    margin-right: 12px;
    vertical-align: middle;
    display: inline-block;
}

.money-back-guarantee {
    display: inline-block;
    color: var(--link-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.money-back-guarantee:hover {
    text-decoration: var(--link-hover-decoration);
    color: var(--primary-hover-color); /* Or a specific link hover color */
}

.testimonial {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    transition: border-color 0.3s ease;
}

.testimonial img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    float: left;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.testimonial p {
    font-size: 15px;
    color: var(--text-color-secondary);
    line-height: 1.7;
    overflow: hidden; /* To contain the float */
}

.testimonial strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Right side with image/video placeholder */
.hero-image-right {
    flex-basis: 50%; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* For play button positioning */
}

.hero-image-right img,
.hero-image-right video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
      0 4px 24px rgba(0,0,0,0.18),
      0 1.5px 6px rgba(0,0,0,0.12),
      0 0.5px 1.5px rgba(0,0,0,0.08);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.play-button svg {
    fill: white;
    width: 24px; /* Adjust icon size */
    height: 24px;
}

.play-button:hover {
    background-color: rgba(0,0,0,0.7);
}

/* Newsletter Section */
.newsletter-section {
  max-width: 600px;
  margin: 72px auto 0 auto;
  padding: 48px 24px 32px 24px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
}
.newsletter-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.geo-highlight {
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: 1px;
}
.newsletter-desc {
  color: var(--text-color-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input[type="email"],
.newsletter-input {
  flex: 1;
  padding: 10px 20px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #fafbfc;
  transition: border-color 0.2s;
  font-family: inherit;
  margin-right: 0;
  min-width: 0;
  box-sizing: border-box;
}

.newsletter-form input[type="email"]:focus,
.newsletter-input:focus {
  border-color: var(--primary-color);
}

.newsletter-form .button.button-primary {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  min-width: 120px;
  box-sizing: border-box;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--primary-color);
}
.newsletter-form button {
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: var(--primary-hover-color);
}

/* New Content Feature Sections */
.content-feature {
    display: flex;
    align-items: center;
    gap: 40px; /* Adjust gap as needed */
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-feature .content-image,
.content-feature .content-text {
    flex: 1; /* Each takes up half the space */
}

.content-feature .content-image { /* Moved centering properties here */
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-feature .content-image img {
    width: 80%; /* Changed from max-width: 100% */
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* Consistent with hero image */
    box-shadow: 0 4px 24px rgba(0,0,0,0.12); /* Softer shadow */
}

.content-feature.image-right {
    flex-direction: row-reverse; /* Image on the right */
}

.content-feature .content-text h3 {
    font-size: 28px; /* Adjust as needed */
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.content-feature .content-text p {
    font-size: 18px; /* Adjust as needed */
    color: var(--text-color-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.content-feature .content-text p strong {
    color: var(--text-color); /* Make strong text stand out a bit more */
    font-weight: 600;
}

.content-feature .content-text blockquote {
    font-size: 20px; /* Slightly larger for emphasis */
    font-style: italic;
    color: var(--text-color);
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    margin: 0 0 24px 0; /* Remove default browser margins for blockquote if any */
    line-height: 1.6;
}

/* Highlighted Feature Section */
.content-feature.feature-highlighted {
    background-color: #f8f9fa; /* Light gray background */
    border-radius: 16px; /* Rounded corners */
    /* Padding is inherited from .content-feature, adjust if needed */
    /* margin-bottom: 40px; Optional: add some space below it if needed */
}

.content-feature.feature-highlighted .content-image img {
    box-shadow: none; /* Remove shadow from this specific image */
}

/* FAQ Page Styles */
.page-header {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--light-gray-bg); /* Optional: light background for header */
}

.page-header h1 {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 24px;
}

.accordion-item {
    background-color: #fff; /* White background for items */
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1.5px solid #fff;
}

.accordion-header {
    background-color: transparent; /* Remove default button background */
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.accordion-item:hover {
    background-color: #f9f9f9; /* Slight hover effect */
    border: 1.5px solid #f0f0f0;
    border-radius: 16px;
}
.accordion-item.active {
    border: 1.5px solid #f0f0f0;
}

.accordion-header::after {
    content: '\25BC'; /* Downward arrow */
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(180deg); /* Upward arrow */
}

.accordion-header.active {
    background-color: #fafbfc; /* Changed to footer color */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    background-color: #fafbfc; /* Changed to footer color */
    padding: 0 20px; /* Padding will be applied when open */
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.accordion-panel p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    padding: 0 0 20px 0; /* Updated padding */
    margin: 0;
}

/* Footer Styles */
.site-footer {
  background: #fafbfc;
  padding: 48px 0 24px 0;
  margin-top: 60px;
  border-top: 1.5px solid #f0f0f0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 160px;
}
.footer-col h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--heading-color);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--text-color-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary-color);
}
.footer-meta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-left: auto;
  min-width: 180px;
}
.footer-social {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social:hover {
  color: var(--primary-hover-color);
}
.copyright {
  color: var(--text-color-secondary);
  font-size: 0.97rem;
}

/* Placeholder for animations if using Motion One later */
.animated-element {
    /* Example styles */
    opacity: 0;
    transform: translateY(20px);
}

/* Pricing Table Section */
.pricing-section {
    padding: 60px 0;
    background-color: var(--background-alt-color); /* Or a different subtle background */
    text-align: center;
}

.pricing-section .container h3 {
    font-size: 2.5rem; /* Similar to other section titles like Testimonials */
    color: var(--heading-color);
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-subtitle strong {
    color: var(--primary-color); /* Highlight the pre-selected part */
}

.pricing-table-wrapper {
    overflow-x: auto; /* Allows table to scroll horizontally on small screens */
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    max-width: 960px; /* Adjust as needed */
    margin: 0 auto;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #e0e0e0;
    padding: 15px 12px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
    vertical-align: middle;
}

.pricing-table thead th {
    background-color: #f9f9f9;
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    padding: 20px 12px;
}

.pricing-table .feature-label {
    text-align: left;
    font-weight: 500;
    padding-left: 20px;
    background-color: #fdfdfd;
    color: var(--text-color);
}

.pricing-table .feature-label strong {
    color: var(--heading-color);
    font-weight: 600;
}

.pricing-table td code {
    background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.85em;
    color: #333;
}

.pricing-table .recommended-plan-header {
    background-color: var(--primary-color-light); /* Light primary color for header */
    color: var(--primary-color-darker); /* Darker text for contrast */
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.pricing-table .recommended-plan {
    background-color: var(--badge-bg-color); /* Very light blue, AliceBlue */
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.pricing-table .recommended-plan strong {
    color: var(--primary-color);
}

.pricing-table tbody tr:last-child td.recommended-plan {
    /* This cell already gets left/right borders from .recommended-plan */
    /* It gets top border from the general tr:last-child td rule above */
    border-bottom: 3px solid var(--primary-color); /* Add specific bottom border */
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.pricing-table thead th.recommended-plan-header {
    border-top: 3px solid var(--primary-color);
}

.pricing-table td sub {
    font-size: 0.8em;
    color: var(--text-color-secondary);
    display: block;
    margin-top: 4px;
}

.pricing-table .checkmark {
    font-size: 1.2rem;
    color: green; /* Or var(--primary-color) */
}

.pricing-footnote {
    font-size: 0.85rem;
    color: var(--text-color-secondary);
    margin-top: 20px;
    text-align: center;
}

.pricing-footnote sub {
    font-size: 1em; /* Reset sub styling for this specific footnote if needed */
}

/* Styles for CTA buttons in the pricing table */
.pricing-table tbody tr:last-child td {
    padding: 15px 8px; /* Adjust padding for button row, less horizontal for more button space */
    border-top: 1px solid #e0e0e0; /* Retain top border as separator, matched to other cell borders */
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.pricing-table tbody tr:last-child td:first-child {
    border: none; /* Remove all borders from the empty first cell in CTA row */
    background-color: transparent; /* Ensure it's not styled like other feature labels */
}

.plan-cta-button {
    width: 100%; /* Make button fill the cell */
    padding: 12px 10px; /* Custom padding for table buttons */
    font-size: 0.95rem; /* Custom font size for table buttons */
    /* Other styles like background, color, border, hover are inherited from .button and .button-primary */
}

td .button-secondary {
    margin-left: 0px;
}

/* All Plans Include Section */
.all-plans-features {
    padding: 0px 0 30px; /* Adjusted bottom padding */
    background-color: #fff;
    text-align: center;
}

.all-plans-features .container h3,
.supported-platforms-title { /* Apply common styles to both titles */
    font-size: 2rem;
    color: var(--heading-color);
    margin-top: 0; /* Section padding handles top space */
    /* margin-bottom will be set specifically below */
    font-weight: 600;
    text-align: center;
}

.supported-platforms-title { /* Specific margin for the first title */
    margin-bottom: 35px; /* Space below 'Works With...' title, before icons */
}

/* Targets the 'All Plans Include:' H3 specifically */
.all-plans-features .container h3:not(.supported-platforms-title) {
    margin-bottom: 30px; /* Space below 'All Plans Include:' title, before features list */
}

.all-plans-features .container .features-list {
    margin-top: 0; /* Remove extra top margin if h3 provides enough */
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column for small screens */
    gap: 20px; /* Adjusted gap */
    max-width: 800px; /* Adjusted max-width for a 2-column layout */
    margin: 0 auto;
    text-align: left;
}

/* Apply 2-column layout for screens wider than a certain breakpoint (e.g., 768px) */
@media (min-width: 768px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.features-list li {
    display: flex;
    align-items: flex-start;
    background-color: var(--background-alt-color);
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */ /* Shadow removed */
    border: 1px solid #e0e0e0; /* Adding a light border instead of shadow */
}

.feature-checkbox {
    font-size: 1rem; /* Adjusted font size for checkmark */
    color: var(--primary-color);
    margin-right: 15px;
    line-height: 1; /* Reset line-height for better vertical alignment */
    width: 28px; /* Fixed width for the circle */
    height: 28px; /* Fixed height for the circle */
    border: 2px solid var(--primary-color);
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0; /* Prevent shrinking if text is long */
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.feature-text code {
    background-color: #e0e0e0; /* Slightly darker than feature-item code for differentiation if needed */
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.85em;
    color: #333;
}

/* FAQ Page Styles */
.page-header {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--light-gray-bg); /* Optional: light background for header */
}

.page-header h1 {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 24px;
}

.accordion-item {
    background-color: #fff; /* White background for items */
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1.5px solid #fff;
}

.accordion-header {
    background-color: transparent; /* Remove default button background */
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.accordion-item:hover {
    background-color: #f9f9f9; /* Slight hover effect */
    border: 1.5px solid #f0f0f0;
    border-radius: 16px;
}
.accordion-item.active {
    border: 1.5px solid #f0f0f0;
}

.accordion-header::after {
    content: '\25BC'; /* Downward arrow */
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(180deg); /* Upward arrow */
}

.accordion-header.active {
    background-color: #fafbfc; /* Changed to footer color */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    background-color: #fafbfc; /* Changed to footer color */
    padding: 0 20px; /* Padding will be applied when open */
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.accordion-panel p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    padding: 0 0 20px 0; /* Updated padding */
    margin: 0;
}

/* Max-width 992px */
@media (max-width: 1038px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        align-items: center; /* Add this to center flex items */
    }
    .hero-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero-subheading {
        margin: 0 auto 32px;
    }
    .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap;
        display: flex;
    }
    .hero-buttons .button {
        margin: 5px 16px;
        width: 100%;
        max-width: 300px;
    }
    .testimonial {
        margin: 24px auto;
        max-width: 550px;
    }
    .hero-image-right {
        /* margin-top: 30px; */
        order: -1;
        margin-bottom: 30px;
        width: 100%;     /* Make container responsive */
        max-width: 550px; /* Cap container width */
    }
    .content-feature {
        padding: 40px 20px; /* Reduce padding */
        gap: 30px;
    }

    .content-feature .content-text h3 {
        font-size: 24px;
    }

    .content-feature .content-text p {
        font-size: 16px;
    }

    .content-feature .content-text blockquote {
        font-size: 18px;
    }
}

/* Max-width 768px */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    .container {
        padding: 0 15px;
    }

    nav {
        padding: 10px 15px;
    }
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--background-color);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    .logo img {
        height: 50px;
    }

    .nav-menu {
        transform: translateY(0);
    }
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        max-width: 300px;
    }
    .nav-menu li a {
        font-size: 24px;
        padding: 15px 20px;
        display: block;
        transition: color 0.2s ease;
    }
    .nav-menu li a.button {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 15px 30px;
        margin-top: 20px;
        font-size: 20px;
        border-radius: 8px;
        width: 100%;
        max-width: 280px;
    }
    .nav-menu li a:not(.button):hover {
        color: var(--primary-color);
    }

    .hero-content-left h1 {
        font-size: 32px;
    }
    .hero-subheading {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .hero-buttons .button {
        width: 100%;
        margin: 5px 0;
    }
    .testimonial {
        padding: 15px;
    }

    .content-feature,
    .content-feature.image-right {
        flex-direction: column; /* Stack image and text */
        text-align: center; /* Center align text when stacked */
    }

    .content-feature .content-image {
        margin-bottom: 30px; /* Space between stacked image and text */
    }

    .content-feature .content-text blockquote {
        margin-left: auto; /* Center blockquote if it has a fixed width or for alignment */
        margin-right: auto;
        max-width: 90%; /* Prevent blockquote from being too wide */
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: none;
        outline: none;
        box-shadow: none;
        background-color: var(--background-color);
    }

    .hamburger-box {
        width: 28px;
        height: 18px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -1.5px;
        width: 28px;
        height: 3px;
        background-color: var(--heading-color, #111);
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.22s;
        transition-timing-function: ease-out;
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
        position: absolute;
        width: 28px;
        height: 3px;
        background-color: inherit;
        border-radius: 4px;
        transition-property: transform, opacity, top, bottom;
        transition-duration: 0.22s;
        transition-timing-function: ease-out;
    }

    .hamburger-inner::before {
        top: -8px;
        transition:
            top 0.075s 0.12s ease,
            opacity 0.075s ease;
    }

    .hamburger-inner::after {
        bottom: -8px;
        transition:
            bottom 0.075s 0.12s ease,
            transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--squeeze.is-active .hamburger-inner {
        transform: rotate(45deg);
        transition-delay: 0.12s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .hamburger--squeeze.is-active .hamburger-inner::before {
        top: 0;
        opacity: 0;
        transition:
            top 0.075s ease,
            opacity 0.075s 0.12s ease;
    }

    .hamburger--squeeze.is-active .hamburger-inner::after {
        bottom: 0;
        transform: rotate(-90deg);
        transition:
            bottom 0.075s ease,
            transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

}

/* Feature Page Specific Styles */
.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-color-secondary);
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.7;
}

.features-content {
    max-width: 800px;
    margin: 0 auto 40px; /* Removed top margin, page-header provides it */
    padding: 0 24px;
}

.feature-item {
    padding: 30px 0; /* Vertical padding between items, replaces hr margin */
}

.feature-item h3 {
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 16px;
}

.feature-item ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 0;
    margin-bottom: 16px;
}

.feature-item ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 8px;
}

.feature-item code {
    background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #333;
}

.feature-divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0; /* Light gray separator */
    margin: 0; /* Removed margin, padding on .feature-item will handle spacing */
}

/* Supported Platforms Styling */
.supported-platforms-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items in the container */
    align-items: center;
    gap: 30px; /* Space between platform items */
    max-width: 800px; /* Align with features list max-width */
    margin: 0 auto 40px; /* Bottom margin for separation before 'All Plans Include:' list */
}

.platform-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--background-alt-color);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.platform-icon {
    height: 24px; /* Adjust as needed for icon size */
    width: auto;  /* Maintain aspect ratio */
    margin-right: 10px;
    vertical-align: middle; /* Helps with inline alignment if not using flex directly on text */
}

.platform-name {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

td .button-secondary {
    margin-left: 0px;
}

/* Press Kit Specific Styles */
.press-kit-content article {
    margin-bottom: 40px; /* Adds space between articles */
}

.press-kit-content article h2 {
    margin-top: 40px; /* Adds more space above headings */
    margin-bottom: 15px; /* Default space below heading */
}

.press-kit-content article h2:first-child {
    margin-top: 0; /* Remove extra top margin for the very first heading in an article if needed */
}

.press-kit-content article ul {
    list-style-position: inside; /* Aligns bullets with text */
    padding-left: 0; /* Reset padding if list-style-position: inside is used */
    margin-left: 0; /* Ensure no extra margin is pushing it out */
}

.press-kit-content article ul li {
    margin-bottom: 8px; /* Space between list items */
}

.logo-display {
    margin-top: 15px;
}

/* Page Specific Header Styles (e.g., for FAQ, Features, Press Kit) */
.page-header {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--light-gray-bg); /* Optional: light background for header */
}

.page-header h1 {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 10px;
}
