/* Critical CSS - Above the fold styles */
/* CSS Reset and Base */
*, *::before, *::after { box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 90px; /* Account for fixed header */
}

/* Ensure smooth scrolling works across browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body { margin: 0; font-family: system-ui, -apple-system, sans-serif; line-height: 1.6; color: #333; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Header */
header { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  background: #fff; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
  padding: 1rem 0; 
}
.header-content { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.logo { 
  max-width: 50%;
}
.logo img { 
  height: 100%;
  width: auto;
  max-width: 50%;
  object-fit: contain; 
}

/* Navigation */
nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2rem; }
nav a { 
  text-decoration: none; 
  color: #333; 
  font-weight: 500; 
  font-size: 1.5em;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease; /* Optimize transition - only color */
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: transform 0.2s ease;
  will-change: transform;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.2s ease;
  will-change: width; /* Optimize for animation */
}
nav a:hover::after, nav a:focus::after { width: 100%; }

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem;
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* Hero Section */
.hero { position: relative; min-height: 500px; overflow: hidden; background: #f0f0f0; }
.hero-image { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-content { 
  position: relative; 
  z-index: 1; 
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  text-align: center; 
  color: white; 
  padding: 2rem;
}
.hero-text-box {
  background: var(--primary-color-alpha-30);
  padding: 2rem 3rem;
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px); /* Safari support */
  max-width: 800px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0 0 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); text-transform: capitalize; }
.hero .tagline { font-size: clamp(1rem, 3vw, 1.5rem); margin: 0; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); text-transform: capitalize; }

/* Content Sections */
section { padding: 2rem 0; }
.section-content { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 3rem; 
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-text h2 { 
  background: var(--primary-color); 
  color: white;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.section-image { overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

/* Contact Section */
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 3rem; 
  margin-top: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

/* Form Styles */
.form-group { margin-bottom: 1.5rem; }
.form-group label { 
  display: block; 
  margin-bottom: 0.5rem; 
  font-weight: 500;
  color: #555;
}
.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.error-message {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}
.form-group.error input,
.form-group.error textarea {
  border-color: #d32f2f;
}
.form-group.error .error-message {
  display: block;
}

/* Button Styles */
.btn {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
}
.btn-primary:hover:not(:disabled) {
  background: var(--primary-color-dark);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.btn:active { transform: translateY(0); }
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Reviews Section */
.reviews-section {
  background: #f8f9fa;
  padding: 3rem 0;
  margin-bottom: 2rem;
}
.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}
.reviews-header h2 {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  margin: 0 auto 2rem;
  max-width: 1200px;
  text-align: center;
}
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.rating-score {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
}
.rating-stars {
  display: flex;
  gap: 0.25rem;
}
.star {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}
.star.empty {
  fill: #e0e0e0;
}
.star.half {
  fill: url(#halfGradient);
}
.rating-text {
  color: #666;
  font-size: 0.9rem;
}

/* Reviews Carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-container {
  display: flex !important;
  transition: transform 0.3s ease;
  flex-wrap: nowrap !important;
}
.review-card {
  min-width: 100%;
  flex: 0 0 100%;
  background: white;
  border-radius: 8px;
  padding: 3rem;
  margin: 0 auto;
  max-width: 90%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.review-info h4 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}
.review-date {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}
.review-rating {
  display: flex;
  gap: 2px;
}
.review-rating .star {
  width: 16px;
  height: 16px;
}
.review-text {
  color: #555;
  line-height: 1.5;
  font-style: italic;
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}
.carousel-btn:hover {
  background: #f5f5f5;
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}
.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: #666;
}


/* Map */
.map-container { 
  overflow: hidden; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background: #f0f0f0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* Footer */
footer { 
  background: #f8f9fa; 
  padding: 2rem 0; 
  margin-top: 4rem; 
}
.footer-content { 
  display: flex; 
  justify-content: center; 
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
.footer-links { display: flex; gap: 2rem; align-items: center; }
.footer-links a { color: #666; text-decoration: none; }
.footer-links a:hover { color: var(--primary-color); }

/* Social Media Icons */
.social-icons { display: flex; gap: 1rem; align-items: center; }
.social-icon { 
  width: 24px; 
  height: 24px; 
  color: var(--primary-color); 
  transition: all 0.3s ease;
  opacity: 0.8;
}
.social-icon:hover { 
  opacity: 1; 
  transform: translateY(-2px);
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; 
  height: 24px; 
  color: var(--primary-color); 
  transition: all 0.3s ease;
  opacity: 0.8;
  text-decoration: none;
}
.social-link:hover { 
  opacity: 1; 
  transform: translateY(-2px);
  color: var(--primary-color);
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-content { flex-wrap: wrap; gap: 1rem; }
  .logo { height: 40px; max-width: 50%; }
  .logo img { max-width: 100%; }
  
  /* Simple mobile menu */
  .menu-toggle { display: block; }
  nav { 
    display: none;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  nav.active {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  nav a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
  }
  nav a:last-child {
    border-bottom: none;
  }
  
  /* Reduce section padding on mobile */
  section { padding: 2rem 0; }
  
  .section-content { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem; }
  .contact-grid { grid-template-columns: 1fr; padding: 0 1rem; }
  
  /* Center contact form elements on mobile */
  .contact-form-wrapper { text-align: center; }
  .contact-form-wrapper .btn { margin: 0 auto; }
  .contact-info-above-map { text-align: center; }
  .contact-info-inline { justify-content: center; }
  .hero { min-height: 400px; }
  .hero-content { min-height: 400px; padding: 1rem; }
  .hero-text-box { padding: 1.5rem 2rem; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: 0.5rem; }
  
  /* Full width map on mobile */
  .map-container {
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }
  
  /* Mobile order: text first, then image for about us */
  #about .section-content { 
    display: flex;
    flex-direction: column;
  }
  #about .section-text { order: 1; }
  #about .section-media { order: 2; }
  
  /* Reviews mobile adjustments */
  .reviews-section {
    padding: 2rem 0;
  }
  .review-card {
    min-width: 100%;
    flex: 0 0 100%;
    margin: 0 auto;
    max-width: 95%;
    padding: 2rem;
  }
  .carousel-btn {
    display: flex;
  }
  .overall-rating {
    flex-direction: column;
    gap: 0.5rem;
  }
  .rating-score {
    font-size: 2rem;
  }
}

/* Form Status Messages */
.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
  display: none;
}
.form-status:not(:empty) {
  display: block;
}
.form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #4caf50;
}
.form-status.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #f44336;
}

/* Utility Classes */
.sr-only { 
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }

/* Section headings style */
#contact-heading {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  margin: 0 0 2rem;
  text-align: center;
}

/* Desktop: contact heading container width */
@media (min-width: 769px) {
  #contact-heading {
    max-width: 1200px;
    margin: 0 auto 2rem;
  }
}

/* Mobile: contact heading full width */
@media (max-width: 768px) {
  #contact-heading {
    width: 100%;
    margin: 0 0 2rem;
  }
}

/* Flow-specific styles removed - uniform styling for all sites */

/* Business Hours Styles */
.hours-list {
  padding: 0;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.hours-item .day {
  font-weight: 600;
  color: #333;
}

.hours-item .hours {
  color: #666;
}

/* Business Hours Mobile Centering */
@media (max-width: 768px) {
  .hours-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    width: 100%;
  }
  
  .hours-item .day {
    margin-bottom: 0.25rem;
  }
  
  .hours-item .hours {
    text-align: center;
  }
}

/* Instagram Feed Widget Styles */
.instagram-feed-widget {
  margin: 3rem 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.instagram-feed-widget .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  margin: 0;
}

.instagram-feed-widget .widget-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instagram-feed-widget .widget-title i {
  font-size: 1.5rem;
}

.instagram-feed-widget .instagram-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.instagram-feed-widget .instagram-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  padding: 2px;
  background: #f8f9fa;
}

.instagram-post {
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  background: #f8f9fa;
  transition: transform 0.2s ease;
}

.instagram-post:hover {
  transform: scale(1.02);
}

.instagram-media {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-image {
  transform: scale(1.05);
}

.video-thumbnail {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.video-placeholder {
  background: #e9ecef;
  color: #6c757d;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.video-placeholder i {
  font-size: 2rem;
}

.carousel-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.8rem;
}

.instagram-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
  transform: translateY(0);
}

.instagram-caption {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.instagram-date {
  font-size: 0.8rem;
  opacity: 0.8;
}

.instagram-post-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.instagram-footer {
  padding: 1.5rem 2rem;
  text-align: center;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.instagram-follow-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
  color: white;
  gap: 0.5rem;
}

.instagram-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.load-more-btn {
  border: 2px solid #dc2743;
  color: #dc2743;
  background: transparent;
}

.load-more-btn:hover {
  background: #dc2743;
  color: white;
}

/* Instagram Connection Prompt */
.instagram-connection-prompt {
  margin: 3rem 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.connection-content {
  padding: 3rem 2rem;
  text-align: center;
}

.connection-icon {
  margin-bottom: 1.5rem;
}

.connection-icon i {
  font-size: 4rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.connection-content h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.connection-content p {
  color: #666;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.detected-account {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #dc2743;
  margin: 1.5rem auto;
  max-width: 400px;
}

.detected-account a {
  color: #dc2743;
  text-decoration: none;
  font-weight: 500;
}

.detected-account a:hover {
  text-decoration: underline;
}

.connect-instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  gap: 0.5rem;
  margin: 1rem 0;
}

.connect-instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.connection-note {
  font-size: 0.9rem;
  color: #999;
  margin-top: 1rem;
}

/* Instagram Lightbox */
.instagram-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.instagram-lightbox .lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lightbox-media-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  min-height: 400px;
  max-width: 600px;
}

.instagram-lightbox img,
.instagram-lightbox video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.instagram-lightbox .lightbox-info {
  width: 300px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: white;
}

.lightbox-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.profile-info strong {
  color: #333;
  font-size: 1.1rem;
}

.sync-time {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.25rem;
}

.lightbox-caption {
  flex: 1;
  line-height: 1.5;
  color: #333;
  margin-bottom: 1rem;
}

.lightbox-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.lightbox-actions {
  margin-top: auto;
}

.instagram-lightbox .lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.2s ease;
}

.instagram-lightbox .lightbox-close:hover {
  background: rgba(0,0,0,0.8);
}

.instagram-lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.instagram-lightbox .lightbox-btn {
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease;
}

.instagram-lightbox .lightbox-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instagram-lightbox .lightbox-content {
    flex-direction: column;
    max-height: 95vh;
  }
  
  .lightbox-media-container {
    max-width: none;
    width: 100%;
  }
  
  .instagram-lightbox .lightbox-info {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .instagram-feed-widget .widget-header {
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .connection-content {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  
  .instagram-post {
    min-height: 150px;
  }
}

