:root {
  --primary: #c29f8c;
  --primary-dark: #8d6e63;
  --secondary: #3e2723;
  --accent: #f5f5f5;
  --text-body: #4e342e;
  --bg-color: #fdfbf9;
  --bg-dark: #1a1513;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-dark: rgba(0, 0, 0, 0.4);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: "Playfair Display", serif;
  --font-sans: "Montserrat", sans-serif;
  --sidebar-width: 280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Navigation --- */
.sidebar {
  position: fixed;
  left: -280px;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: white;
  z-index: 2000;
  transition: left var(--transition), box-shadow var(--transition);
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar.active {
  left: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(62, 39, 35, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .main-wrapper {
    transition: margin-left var(--transition);
  }
  /* Disabled pushing content on desktop to avoid jumps */
  /* .main-wrapper.sidebar-open { margin-left: var(--sidebar-width); } */
}

.sidebar-logo {
  margin-bottom: 3rem;
  text-align: center;
}

.sidebar-logo img {
  max-width: 150px;
}

.nav-menu {
  list-style: none;
  flex-grow: 1;
}

.nav-item {
  margin-bottom: 0.8rem;
}

.nav-link {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  border-radius: 12px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: var(--accent);
  color: var(--primary);
  transform: translateX(8px);
}

.nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  position: fixed;
  top: 25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 2100;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-toggle:hover {
  transform: scale(1.1);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(194, 159, 140, 0.05) 0%,
    transparent 40%
  );
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title-group {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 2rem;
}

.hero-logo {
  max-height: 160px;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
  display: block;
  margin-bottom: 2.5rem;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1;
  color: var(--secondary);
  font-style: italic;
  margin: 0;
  font-weight: 400;
  letter-spacing: -2px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: clamp(350px, 65vh, 550px); /* Zbalansowana wysokość */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  display: block;
  overflow: hidden; /* Prevent overflow during zoom */
  border-radius: 30px;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 20px 20px 60px rgba(62, 39, 35, 0.1);
  transition: transform 0.5s ease;
}

.hero-slide.active img {
  animation: heroZoom 15s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.15) translateX(15px) translateY(5px);
  }
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-family: var(--font-sans);
}

.hero-cta {
  margin-top: 2.5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--secondary) 0%, #25d366 100%);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(62, 39, 35, 0.25);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(62, 39, 35, 0.35);
  filter: brightness(1.1);
}

.cta-icons {
  display: flex;
  gap: 8px;
  font-size: 1.2rem;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  opacity: 0.5;
  transition: var(--transition);
  animation: scroll-float 2s ease-in-out infinite;
}

@keyframes scroll-float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--secondary);
  border-radius: 15px;
  position: relative;
}

.wheel {
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(62, 39, 35, 0.3) !important;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

.scroll-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* --- Sections --- */
section {
  padding: 80px 4rem 120px 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
  color: var(--secondary);
  text-align: center;
  scroll-margin-top: 10px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-styled {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .about-image-styled {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
  }
}

/* --- Portfolio Filters --- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid #eee;
  background: white;
  color: #777;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(194, 159, 140, 0.2);
}

.portfolio-item-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  z-index: 5;
  letter-spacing: 1px;
}

.contact-phone-link {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: var(--transition);
}

.contact-phone-link:hover {
  color: var(--primary);
  transform: scale(1.05);
}

/* --- Portfolio --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.review-card-inner {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  height: 100%;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item-stats {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.stat-badge {
  background: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-badge.likes {
  color: #e91e63;
  border-color: rgba(233, 30, 99, 0.1);
}

.stat-badge.shares {
  color: #3498db;
  border-color: rgba(52, 152, 219, 0.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(62, 39, 35, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item-link {
  text-decoration: none;
}

.view-details {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  color: var(--secondary);
  font-weight: 600;
}

/* --- Contact --- */
#contact {
  max-width: 1400px;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr; /* Much smaller image, wider form */
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(62, 39, 35, 0.08);
}

.contact-image {
  position: relative;
  height: 100%;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.contact-phone-box {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  padding: 0 2rem;
  z-index: 10;
}

.contact-phone-link {
  text-decoration: none;
  background: white;
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.contact-phone-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.contact-form-wrapper {
  padding: 1.5rem 2.5rem;
}

.form-group {
  margin-bottom: 0.6rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  background: #fafafa;
  font-family: inherit;
  font-size: 0.85rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  background: white;
  box-shadow: 0 5px 15px rgba(194, 159, 140, 0.1);
}

.btn-submit {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(62, 39, 35, 0.2);
}

/* --- Footer --- */
.footer {
  background: white;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f5f5f5;
}

/* --- Responsive Optimization --- */
@media (max-width: 1200px) {
  section {
    padding: 100px 2.5rem;
  }
  .hero {
    padding: 2.5rem;
  }
  .contact-form-wrapper {
    padding: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 0 1rem;
  }
  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title-group {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 1.5rem;
  }
  .hero-image {
    order: 1; /* Ensure it stays below text on mobile */
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-image {
    height: 450px; /* Increased height to show more of the person */
  }
  .contact-form-wrapper {
    padding: 3.5rem 2rem 2rem 2rem; /* Add more top padding to clear the absolute phone box */
  }
  .footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 1.5rem;
  }
  .section-title {
    margin-bottom: 2.5rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-form-wrapper {
    padding: 2.5rem 1.5rem;
  }
  .hero-logo {
    max-height: 180px;
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .btn-cta {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 1.2rem;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .btn-submit {
    padding: 15px 30px;
  }
}

/* --- Newsletter --- */
.newsletter-section {
  background: var(--accent);
  padding: 80px 2.5rem;
  text-align: center;
  border-radius: 40px;
  margin: 4rem auto;
  max-width: 1200px;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.newsletter-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.newsletter-input-group {
  display: flex;
  gap: 15px;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  margin-bottom: 15px;
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 25px;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-btn {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

.newsletter-consent {
  text-align: left;
  padding: 0 20px;
}

.consent-label {
  display: flex;
  gap: 10px;
  font-size: 0.75rem;
  color: #888;
  cursor: pointer;
  line-height: 1.4;
}

.consent-label a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

.consent-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  flex-shrink: 0;
}

.newsletter-status {
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-success {
  color: #2c7a7b;
}
.status-info {
  color: var(--primary);
}
.status-error {
  color: #e53e3e;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 1.5rem;
    border-radius: 30px;
    margin: 3rem 1rem;
  }

  .newsletter-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .newsletter-input-group {
    flex-direction: column;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    gap: 10px;
  }

  .newsletter-input {
    background: white;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    width: 100%;
  }

  .newsletter-btn {
    width: 100%;
    padding: 15px;
  }

  .newsletter-section {
    padding: 40px 1.2rem;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 1.2rem;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .btn-submit {
    padding: 15px 30px;
  }
  .captcha-options {
    justify-content: center !important;
  }
}

@media (max-width: 380px) {
  section {
    padding: 50px 1rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 0.95rem;
  }
  .btn-cta {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2.2rem;
  }
  .contact-form-wrapper {
    padding: 2rem 1rem;
  }
  .newsletter-section {
    padding: 30px 1rem;
  }
  .newsletter-title {
    font-size: 1.8rem;
  }
  .hero-logo {
    max-width: 100%;
    max-height: 150px;
  }
  .footer {
    padding: 2.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Utility */
.text-accent {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner h4 {
  margin: 0;
  font-family: var(--font-serif);
  color: var(--secondary);
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.btn-cookie-accept {
  align-self: flex-start;
  background: var(--secondary);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.btn-cookie-accept:hover {
  background: #2c1e1c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 500px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 3.5rem 2.5rem;
  border-radius: 35px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(62, 39, 35, 0.08);
  border-color: rgba(194, 159, 140, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: white;
  transform: rotateY(360deg);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--secondary);
  line-height: 1.3;
}

.service-card p {
  color: #6d4c41;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
