/* style.css */

:root {
  --font-primary: 'Archivo Black', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  /* Pastel Retro/Biomorphic Color Palette */
  --color-primary: #A0D2DB; /* Soft Teal */
  --color-primary-dark: #7DAFBA;
  --color-secondary: #FFC8A2; /* Pale Peach */
  --color-secondary-dark: #EAA980;
  --color-accent: #D4B2D8; /* Light Lavender */
  --color-accent-dark: #B998BC;
  --color-highlight: #FFDB58; /* Pastel Yellow for highlights/CTAs */
  --color-highlight-dark: #F0C748;

  --color-text-light: #FFFFFF;
  --color-text-dark: #4A4A4A; /* Main body text - good contrast */
  --color-text-darker: #2C2C2C; /* Headings - stronger contrast */
  --color-text-subtle: #757575;

  --color-background-light: #FCF8F3; /* Very light cream/off-white */
  --color-background-alt: #EFF1F5; /* Pale Blue/Lavender tint */
  --color-background-dark-overlay: rgba(0, 0, 0, 0.5);
  --color-background-card: #FFFFFF;

  --border-radius-soft: 15px;
  --border-radius-round: 50px;
  --border-radius-biomorphic-card: 25px 5px 25px 5px; /* Example for biomorphic */
  --border-radius-biomorphic-details: 30% 70% 20% 80% / 60% 40% 60% 40%; /* More organic */


  --box-shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-interactive: 0 8px 25px rgba(var(--color-primary-rgb), 0.15);
  --box-shadow-inset: inset 0 2px 4px rgba(0,0,0,0.06);

  --transition-smooth: all 0.3s ease-in-out;
  --transition-bouncy: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --header-height: 70px;
  --container-max-width: 1200px;
  --container-padding: 0 20px;
}

/* Global Styles & Typography */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size */
}

body {
  font-family: var(--font-secondary);
  color: var(--color-text-dark);
  background-color: var(--color-background-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* For pages like privacy and terms */
.content-page {
  padding-top: calc(var(--header-height) + 40px); /* Header height + extra space */
  padding-bottom: 40px;
}
.content-page .container {
    max-width: 800px; /* Narrower content for text-heavy pages */
}
.content-page h1, .content-page h2, .content-page h3 {
    margin-bottom: 1rem;
    color: var(--color-text-darker);
}
.content-page h1 { font-size: 2.5rem; }
.content-page h2 { font-size: 2rem; }
.content-page p { margin-bottom: 1.2rem; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-text-darker);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: center; /* Titles centered by default */
}

h1 { font-size: 2.8rem; }
h2.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; text-shadow: 1px 1px 2px rgba(0,0,0,0.05); }
h3.card-title { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--color-primary-dark) }
p { margin-bottom: 1.2rem; }
a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--color-secondary-dark);
  text-decoration: underline;
}

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

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: var(--container-padding);
}

.main-container {
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Utility Classes */
.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}
.alt-background {
  background-color: var(--color-background-alt);
}
.text-center { text-align: center; }
.section-intro {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-subtle);
}

/* Global Button Styles */
.cta-button, button, input[type="submit"], input[type="button"] {
  display: inline-block;
  font-family: var(--font-primary);
  background-color: var(--color-highlight);
  color: var(--color-text-darker);
  padding: 12px 30px;
  border-radius: var(--border-radius-round);
  border: none;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-bouncy);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 10px;
  margin-bottom: 10px;
}

.cta-button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background-color: var(--color-highlight-dark);
  color: var(--color-text-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.cta-button:active, button:active, input[type="submit"]:active, input[type="button"]:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bouncy-animation {
  animation: bouncePulse 2.5s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bouncePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}


/* Header & Navigation */
.site-header {
  background-color: rgba(253, 240, 224, 0.85); /* --color-background-light with transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--box-shadow-soft);
  height: var(--header-height);
  transition: background-color 0.3s ease;
}
.site-header.scrolled {
    background-color: rgba(253, 240, 224, 0.98); /* More opaque on scroll */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--color-secondary-dark);
  text-decoration: none;
}
.logo:hover {
  color: var(--color-primary-dark);
}

.main-navigation .nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.main-navigation .nav-list li {
  margin-left: 25px;
}

.main-navigation .nav-list a {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--color-text-dark);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--border-radius-soft);
  transition: var(--transition-smooth);
}

.main-navigation .nav-list a:hover,
.main-navigation .nav-list a.active {
  color: var(--color-text-light);
  background-color: var(--color-primary);
}

.menu-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001; /* Above nav list for mobile */
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text-darker);
  position: relative;
  transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--color-text-darker);
  left: 0;
  transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hero Section */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0; /* Add padding for content */
  margin-top: var(--header-height); /* Offset for fixed header */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)); /* Darker overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto 2rem auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-content .cta-button {
  font-size: 1.3rem;
  padding: 15px 35px;
}

/* Card Styles (Generic) */
.card {
  background-color: var(--color-background-card);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--box-shadow-soft);
  padding: 20px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%; /* For consistent card height in grids */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card-image, .image-container {
  width: 100%;
  max-width: 350px; /* Control max image width within card */
  height: 200px; /* Fixed height for image container */
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: calc(var(--border-radius-soft) - 5px); /* Slightly smaller radius */
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img, .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img, .card:hover .image-container img {
    transform: scale(1.05);
}

.card-content {
  width: 100%;
}
.card-content h3 {
    margin-top: 0;
}
.card-content p {
    font-size: 0.95rem;
    color: var(--color-text-subtle);
}

/* Biomorphic Shape for specific cards/elements */
.biomorphic-shape {
  border-radius: var(--border-radius-biomorphic-card); /* Simple biomorphic */
}
.biomorphic-shape.more-organic {
   border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}


/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.feature-card .card-image {
  background-color: var(--color-accent-dark); /* Placeholder if image fails */
}
.feature-card h3 { color: var(--color-accent-dark); }


/* Insights Section */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
.image-gallery .card-image {
    height: 250px; /* Taller images for gallery */
    border-radius: var(--border-radius-soft);
}

/* Workshops Section */
.workshop-visual {
    max-width: 600px; /* Control size of standalone image */
    height: auto; /* Allow natural aspect ratio for this specific image */
    margin: 2rem auto;
}
.workshop-visual img {
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-soft);
}

/* Accolades Section */
.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}
.accolade-card {
  background-color: var(--color-secondary);
  color: var(--color-text-darker);
  padding: 25px;
}
.accolade-card p { font-style: italic; margin-bottom: 0.5rem; font-size: 1.05rem; }
.accolade-card cite {
  display: block;
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-secondary-dark);
}
.accolade-image {
    max-width: 500px;
    height: auto;
    margin: 1rem auto 0 auto; /* Centered below grid on small screens */
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.team-member-card .card-image {
  width: 150px; /* Smaller, circular images */
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--color-secondary);
}
.team-member-card .team-role {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Events Calendar Section */
.events-list .event-item {
  background-color: var(--color-background-card);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-accent);
}
.event-item h3.event-title {
  color: var(--color-accent-dark);
  font-size: 1.4rem;
  text-align: left;
}
.event-item .event-date {
  font-weight: 700;
  color: var(--color-text-subtle);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.events-section .card-image {
    max-width: 500px;
    height: auto;
    margin: 2rem auto 0 auto;
}


/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-post-snippet .post-meta {
  font-size: 0.85rem;
  color: var(--color-text-subtle);
  margin-bottom: 0.75rem;
}
.read-more-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  padding: 8px 15px;
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius-round);
  text-decoration: none;
}
.read-more-link:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
}

/* Pricing Section */
.pricing-options {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Make cards same height */
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 2rem;
}
.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px; /* Limit card width */
  border: 2px solid var(--color-primary);
}
.pricing-card .card-image {
  height: 150px; /* Smaller images for pricing */
}
.pricing-card h3 { font-size: 1.8rem; color: var(--color-primary-dark); }
.pricing-card .price-tag {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--color-secondary-dark);
  margin: 0.5rem 0 1rem 0;
}
.pricing-card .cta-button {
    margin: 0.5rem 0; /* Spacing for multiple buttons */
}


/* External Resources Section */
.resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.resource-item.card {
  background-color: var(--color-background-alt); /* Different background for these cards */
  border-left: 4px solid var(--color-secondary);
  align-items: flex-start; /* Align content to start for these cards */
  text-align: left;
}
.resource-item h3 {
  text-align: left;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.resource-item h3 a {
    color: var(--color-secondary-dark);
}
.resource-item h3 a:hover {
    color: var(--color-primary-dark);
}
.resource-item p {
  font-size: 0.9rem;
  color: var(--color-text-subtle);
}

/* FAQ Section */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}
.faq-item {
  background-color: var(--color-background-card);
  margin-bottom: 15px;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
}
.faq-item.biomorphic-shape {
    border-radius: var(--border-radius-biomorphic-details);
    padding: 10px; /* Adjust padding for complex shapes */
}
.faq-item summary {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  padding: 18px 25px;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  position: relative;
  color: var(--color-primary-dark);
  text-align: left;
}
.faq-item summary::-webkit-details-marker { display: none; } /* Chrome/Safari */
.faq-item summary::after { /* Custom arrow */
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 700;
  transition: transform 0.2s ease-out;
  color: var(--color-accent);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  text-align: left;
}
.faq-item[open] {
    background-color: #fff; /* Ensure it's on top if overlapping */
}


/* Contact Section */
.contact-form {
  max-width: 650px;
  margin: 2rem auto;
  background-color: var(--color-background-card);
  padding: 30px;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--box-shadow-soft);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-darker);
}
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius-soft);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-inset);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 160, 210, 219), 0.3); /* Using fallback rgb for var */
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button[type="submit"] {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
}
.contact-info {
    text-align: center;
    margin-top: 2rem;
}
.contact-info p {
    color: var(--color-text-subtle);
}

/* Footer */
.site-footer {
  background-color: var(--color-text-darker);
  color: var(--color-background-alt);
  padding: 40px 0;
  text-align: center;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: start; /* Align items to the start of their grid cell */
}
.site-footer h4 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: left;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.site-footer ul li {
  margin-bottom: 0.75rem;
}
.site-footer ul li a {
  color: var(--color-background-alt);
  text-decoration: none;
}
.site-footer ul li a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-social ul {
    display: flex;
    flex-direction: column; /* Stack links */
}
.footer-social ul li a {
    /* Text links, no icons needed for now per prompt */
    font-weight: normal;
}
.footer-copyright {
  grid-column: 1 / -1; /* Span full width on smaller screens or if last item */
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-subtle);
}
.footer-copyright .footer-logo {
    display: block;
    margin: 1rem auto 0 auto;
    font-size: 1.5rem;
    color: var(--color-primary);
}
.footer-copyright p {
    color: var(--color-text-subtle); /* Ensure p inside copyright also gets right color */
}


/* Modals */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6); /* Dark overlay */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal-content {
  background-color: var(--color-background-card);
  margin: 10% auto;
  padding: 30px;
  border-radius: var(--border-radius-soft);
  max-width: 700px;
  width: 90%;
  position: relative;
  animation: modalOpen 0.4s ease-out;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-content.biomorphic-shape {
  border-radius: var(--border-radius-biomorphic-details);
}
.modal-content h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--color-primary-dark);
}
.modal-content p {
    margin-bottom: 1rem;
}
.modal-content .card-image {
    height: auto; /* Adjust for modal content */
    max-height: 300px;
    margin-top: 1.5rem;
}
@keyframes modalOpen {
  from { opacity: 0; transform: translateY(-50px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.close-button {
  color: var(--color-text-subtle);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.close-button:hover,
.close-button:focus {
  color: var(--color-text-darker);
  text-decoration: none;
  cursor: pointer;
}

/* Success Page Specific Styles */
.success-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  background-color: var(--color-background-alt);
}
.success-content {
  background-color: var(--color-background-card);
  padding: 40px;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--box-shadow-soft);
  max-width: 500px;
}
.success-content h1 {
  color: var(--color-primary-dark);
  font-size: 2.5rem;
}
.success-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


/* Responsive Design */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2.section-title { font-size: 2.2rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.2rem; }

  .features-grid,
  .team-grid,
  .blog-grid,
  .pricing-options,
  .accolades-grid,
  .image-gallery,
  .resources-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .main-navigation .nav-list {
    display: none; /* Hide on mobile by default */
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: rgba(253, 240, 224, 0.98); /* --color-background-light with high opacity */
    padding: 15px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-top: 1px solid var(--color-primary-dark);
  }
  .main-navigation .nav-list.active {
    display: flex; /* Show when active */
    animation: slideDown 0.3s ease-out;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-navigation .nav-list li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .main-navigation .nav-list a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--color-background-alt);
    border-radius: 0;
  }
  .main-navigation .nav-list li:last-child a {
    border-bottom: none;
  }
  .menu-toggle {
    display: block; /* Show burger menu */
  }
  .menu-toggle.active .hamburger {
    background-color: transparent; /* Hide middle line */
  }
  .menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-content .cta-button { font-size: 1.1rem; padding: 12px 25px; }

  .footer-container {
    grid-template-columns: 1fr; /* Stack footer columns */
    text-align: center;
  }
  .site-footer h4, .site-footer ul {
    text-align: center;
  }
   .footer-social ul {
    justify-content: center;
    flex-direction: row; /* Social links side-by-side on mobile if space */
    gap: 15px;
  }

  .modal-content {
    margin: 20% auto;
    width: 95%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2.section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2rem; }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .card { padding: 15px; }
  .card-image, .image-container { height: 180px; }

  .pricing-options {
    flex-direction: column; /* Stack pricing cards */
    align-items: center;
  }
  .pricing-card {
    width: 100%;
    max-width: 320px; /* Still give it some max width */
  }

  .contact-form {
    padding: 20px;
  }
}

/* Parallax effect preparation (JS will handle actual movement) */
.parallax-background {
  background-attachment: fixed; /* Basic parallax, can be enhanced with JS */
  /* Ensure background-size, position, repeat are set in HTML style or here if consistent */
}

/* Fallback for --color-primary-rgb variable for box-shadow if needed */
/* This is a conceptual note, as CSS vars cannot directly be split into R,G,B for rgba() without JS */
/* For .form-input:focus, a solid color might be simpler or use a pre-calculated rgba value */
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(160, 210, 219, 0.3); /* Fallback: Approximate RGB of --color-primary */
}