/* CSS Variables - Last updated: 2024-01-15 DEBUG VERSION */
:root {
  --bg-off-white: #FDFBF6;
  --accent-sage-green: #A3B18A;
  --accent-soft-gold: #D4C2A4;
  --text-dark-charcoal: #343A40;
  --text-muted-gray: #6C757D;
  --font-serif: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  --border-radius: 12px;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark-charcoal);
  background-color: var(--bg-off-white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.25rem;
  color: var(--text-dark-charcoal);
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(163, 177, 138, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(253, 251, 246, 0.95);
  box-shadow: var(--shadow-light);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo h1 {
  font-size: 1.75rem;
  margin-bottom: 0;
  color: var(--accent-sage-green);
}

.logo span {
  font-size: 0.9rem;
  color: var(--text-muted-gray);
  font-weight: 300;
}

/* Buttons */
@keyframes cta-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
}

.cta-button, .cta-button-large {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent-sage-green);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  animation: cta-pulse 2s infinite ease-in-out;
}

.cta-button-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  margin-top: 2rem;
  animation: none; /* Disable pulse for the large button if not desired */
}

.cta-button:hover, .cta-button-large:hover {
  background: var(--accent-soft-gold);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 140px 0 120px;
  text-align: center;
  color: white;
  
  /* Applying background and overlay directly */
  background: 
    linear-gradient(rgba(40, 40, 40, 0.65), rgba(40, 40, 40, 0.65)),
    url('https://images.pexels.com/photos/3757657/pexels-photo-3757657.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  /* Initial state for JS animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-title.animate-out {
  opacity: 0;
  transform: translateY(-20px);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent-soft-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* About Section */
.about {
  padding: var(--section-padding);
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: var(--accent-sage-green);
  margin-bottom: 2rem;
}

.about-image{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px !important;
  width: 100%;
  margin: 0 auto;
}

.about-photo{
  max-width: 300px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  display: block;
  object-fit: contain !important;
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background: var(--bg-off-white);
}

.services h3 {
  text-align: center;
  color: var(--accent-sage-green);
  margin-bottom: 1rem;
}

.services-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(163, 177, 138, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 2.5rem;
  margin-right: 1rem;
  opacity: 0.8;
}

.service-title-price {
  flex: 1;
}

.service-card h4 {
  color: var(--accent-sage-green);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.service-price {
  color: var(--accent-soft-gold);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-sans);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted-gray);
}

/* Virtual Tour Section */
.virtual-tour {
  padding: 120px 0;
  background-image: linear-gradient(rgba(163, 177, 138, 0.7), rgba(212, 194, 164, 0.7)),
                    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.1"/></svg>');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.virtual-tour-content {
  max-width: 700px;
  margin: 0 auto;
}

.virtual-tour h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.virtual-tour p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background: white;
}

.testimonials h3 {
  text-align: center;
  color: var(--accent-sage-green);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-off-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(163, 177, 138, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent-sage-green);
}

.testimonial-rating {
  color: var(--accent-soft-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* FAQ Section */
.faq {
  padding: var(--section-padding);
  background: var(--bg-off-white);
}

.faq h3 {
  text-align: center;
  color: var(--accent-sage-green);
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(163, 177, 138, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-sage-green);
  transition: var(--transition);
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted-gray);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact h3 {
  color: var(--accent-sage-green);
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  color: var(--text-dark-charcoal);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-item a {
  color: var(--accent-sage-green);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--accent-soft-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Social Icons Styling */
.social-links a,
.footer-social a {
    display: inline-block;
    padding: 0.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.social-links a:hover,
.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* Contact Section Icons (on light background) */
.contact .social-links a {
    color: var(--text-dark-charcoal);
}
.contact .social-links a:hover {
    color: var(--accent-sage-green);
}

/* Footer Icons (on dark background) */
.footer .footer-social a {
    color: rgba(255, 255, 255, 0.8);
}
.footer .footer-social a:hover {
    color: #fff;
}

/* Contact Map */
.contact-map h4 {
  color: var(--accent-sage-green);
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  margin-bottom: 1rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.map-note {
  color: var(--text-muted-gray);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #f8f7f4 0%, #ede8e0 100%);
  padding: var(--section-padding);
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(163,177,138,0.03)"/><circle cx="80" cy="40" r="0.8" fill="rgba(212,194,164,0.04)"/><circle cx="40" cy="80" r="1.2" fill="rgba(163,177,138,0.02)"/><circle cx="90" cy="90" r="0.6" fill="rgba(212,194,164,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  color: var(--text-dark-charcoal);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.newsletter-subtitle {
  color: var(--text-muted-gray);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.newsletter-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark-charcoal);
  transition: var(--transition);
  background: white;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-sage-green);
  box-shadow: 0 0 0 3px rgba(163, 177, 138, 0.1);
}

.newsletter-input::placeholder {
  color: var(--text-muted-gray);
}

.newsletter-button {
  padding: 0.875rem 2rem;
  background: var(--accent-sage-green);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  min-width: 140px;
}

.newsletter-button:hover {
  background: var(--accent-soft-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.newsletter-button:active {
  transform: translateY(0);
}

.newsletter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.newsletter-consent-input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-sage-green);
  cursor: pointer;
  flex-shrink: 0;
}

.newsletter-consent-label {
  font-size: 0.9rem;
  color: var(--text-muted-gray);
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
}

.newsletter-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

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

.newsletter-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
  background: #4a5568;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.footer-brand h4,
.footer-contact h4,
.footer-social-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-name {
  color: var(--accent-sage-green);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.footer-phone,
.footer-address {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-phone {
  margin-bottom: 1rem;
}

.footer-address {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-sage-green);
  transform: translateY(-2px);
}

.footer-social .social-icon {
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-privacy {
    text-align: center;
    margin-bottom: 1.5rem;
}

.copyright-text {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(163, 177, 138, 0.2);
    font-size: 0.9rem;
    text-align: center;
}

.cookie-notice {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: center;
}

.privacy-link {
    color: var(--accent-sage-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.privacy-link:hover {
    color: var(--accent-soft-gold);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
  }
  .footer-social-section {
      text-align: left;
  }
   .footer-social {
      justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .footer-privacy {
      text-align: center;
      margin-bottom: 1.5rem;
  }

  .copyright-text {
      font-size: 0.8rem;
  }

  .cookie-notice {
      font-size: 0.85rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 250px !important;
    margin: 0 auto !important;
  }

  .about-photo {
    max-width: 250px !important;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 2rem;
    margin-right: 0.75rem;
  }

  .virtual-tour {
    background-attachment: scroll;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand,
  .footer-contact,
  .footer-social-section {
    margin-bottom: 2rem;
  }

  .footer-social-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .map-container iframe {
    height: 250px;
  }

  h3 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 80px 0 60px;
  }

  :root {
    --section-padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-button, .cta-button-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
}

/* Smooth animations for dynamic content */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading animation */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Hero Title Animation */
@keyframes pulse-fade {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  animation: pulse-fade 3s infinite ease-in-out;
}

/* AI Chatbot Section Separator */
section.ai-chatbot {
    border-bottom: 1px solid #e9ecef; /* Delicate full-width line */
    padding-bottom: 4rem; /* Add spacing after the separator */
}

/* Newsletter Section */
.newsletter {
  padding: var(--section-padding);
  background: var(--bg-off-white);
  text-align: center;
}

.newsletter .container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  color: var(--accent-sage-green);
  margin-bottom: 1rem;
}

.newsletter-subtitle {
  color: var(--text-muted-gray);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center children by default */
  gap: 1.5rem;
  width: 100%;
}

.form-group {
  display: flex;
  width: 100%;
  gap: 1rem;
  justify-content: center; /* Center the input/button group specifically */
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-family: 'Inter', sans-serif;
}

.newsletter-button {
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-sage-green);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-button:hover {
  background-color: var(--accent-soft-gold);
  transform: translateY(-1px);
}

.newsletter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%; /* Ensures the container spans the full width */
  align-self: flex-start; /* KEY FIX: Overrides the parent's 'align-items: center' */
}

.newsletter-consent-label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-muted-gray);
  flex: 1;
}

.newsletter-consent-input {
  margin-top: 2px; /* align checkbox vertically with first line of text */
}

/* Footer adjustments */
.footer-bottom {
  text-align: center;
}

.cookie-notice {
  text-align: center;
}

/* Newsletter Responsive */
@media (max-width: 768px) {
  .newsletter-title {
    font-size: 2rem;
  }
  
  .newsletter-subtitle {
    font-size: 1rem;
  }
  
  .newsletter-form {
    padding: 1.5rem;
  }
  
  .form-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-input {
    min-width: 100%;
  }
  
  .newsletter-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter-title {
    font-size: 1.75rem;
  }
  
  .newsletter-form {
    padding: 1.25rem;
  }
  
  .newsletter-consent-label {
    font-size: 0.85rem;
  }
}

/* Responsive design for AI Chatbot */
@media (max-width: 768px) {
  section.ai-chatbot .container > div {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}