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

:root {
  --primary: #1a1a2e;
  --accent: #d4af37;
  --secondary: #16213e;
  --light: #f8f5f0;
  --dark: #0f0f1e;
  --text: #2d2d2d;
  --white: #ffffff;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.3rem;
}

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

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 0;
  position: relative;
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding: 8px 0;
}

.logo::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: var(--accent);
}

.main-nav {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 1.3rem;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  width: 50px;
  margin-left: auto;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover::after {
  width: 100%;
}

.btn-secondary:hover {
  color: var(--dark);
  border-color: var(--accent);
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  background-image: url(../gift_visuals/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero h1 {
  margin-bottom: 15px;
  color: var(--white);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.page-hero {
  background: var(--light);
  padding: 50px 0;
  text-align: center;
  background-image: url(../gift_visuals/hero-2.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero h1 {
  color: white;
  margin-bottom: 10px;
}

.page-hero p {
  color: white;
  font-size: 1rem;
}

section {
  padding: 60px 0;
}

.services {
  background: var(--white);
}

.services h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
  animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card i {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 18px;
  transition: all 0.4s;
  display: inline-block;
}

.service-card:hover i {
  transform: rotateY(360deg) scale(1.1);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
}

.about {
  background: var(--light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.features {
  background: var(--white);
}

.features h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 25px 15px;
}

.feature-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-item p {
  font-size: 14px;
}

.gallery {
  background: var(--light);
}

.gallery h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

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

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}
.portfolio {
  background: var(--white);
}

.portfolio h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

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

.portfolio-item {
  overflow: hidden;
  background: var(--white);
  position: relative;
  border: 1px solid #e0e0e0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out backwards;
}

.portfolio-item:nth-child(1) {
  animation-delay: 0.1s;
}
.portfolio-item:nth-child(2) {
  animation-delay: 0.2s;
}
.portfolio-item:nth-child(3) {
  animation-delay: 0.3s;
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
  z-index: 2;
}

.portfolio-item:hover::before {
  transform: scaleX(1);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-info {
  padding: 25px;
  position: relative;
}

.portfolio-info h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.portfolio-info p {
  font-size: 14px;
  line-height: 1.7;
}

.approach {
  background: var(--light);
}

.approach h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
}

.approach-content {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.approach-content p {
  margin-bottom: 15px;
}

.approach-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.approach-item {
  text-align: center;
  padding: 25px 15px;
}

.approach-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.approach-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.approach-item p {
  font-size: 14px;
}

.testimonials {
  background: var(--white);
}

.testimonials h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 30px;
  position: relative;
  border: 1px solid #e0e0e0;
  transition: all 0.4s;
  animation: fadeInUp 0.6s ease-out backwards;
  clip-path: polygon(
    15px 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    0 100%,
    0 15px
  );
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s;
}

.testimonial-card:hover {
  transform: translateX(5px);
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.testimonial-card:hover::after {
  height: 100%;
}

.testimonial-card p {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.products {
  background: var(--white);
}

.products h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  animation: scaleIn 0.6s ease-out backwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--accent),
    var(--primary),
    var(--accent)
  );
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  animation: shimmer 3s linear infinite;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

.product-card:hover::before {
  opacity: 1;
}

.product-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  position: relative;
}

.product-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s;
}

.product-card:hover .product-icon {
  transform: rotate(360deg);
}

.product-card:hover .product-icon::after {
  opacity: 1;
  transform: scale(1);
}

.product-icon i {
  font-size: 2.5rem;
  color: var(--accent);
}

.product-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.product-card p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  display: inline-block;
}

.product-price::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.customization {
  background: var(--light);
}

.customization h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.custom-item {
  text-align: center;
  padding: 25px 15px;
}

.custom-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.custom-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.custom-item p {
  font-size: 14px;
}

.process {
  background: var(--white);
}

.process h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  padding: 25px 15px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
}

.contact-section {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 5px;
}

.info-item h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1rem;
}

.info-item p {
  font-size: 14px;
}

.contact-form-wrapper h2 {
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.checkbox-group input[type='checkbox'] {
  margin-top: 4px;
}

.checkbox-group span {
  font-size: 13px;
}

.checkbox-group a {
  color: var(--accent);
}

.map-section {
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
}

.error-main,
.thankyou-main {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../gift_visuals/elegant-gift.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.error-section,
.thankyou-section {
  padding: 60px 0;
}

.error-content,
.thankyou-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-content h1 {
  font-size: 6rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.error-content h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.error-content p {
  margin-bottom: 25px;
}

.thankyou-content i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.thankyou-content h1 {
  color: white;
  margin-bottom: 15px;
}

.thankyou-content p {
  margin-bottom: 25px;
  color: white;
}

.policy-section {
  background: var(--white);
}

.policy-section h1 {
  color: var(--primary);
  margin-bottom: 10px;
}

.policy-date {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 30px;
}

.policy-content h2 {
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-content strong {
  color: var(--primary);
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.footer-info p {
  font-size: 13px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.8;
  transition: all 0.3s;
  padding: 8px 15px;
  position: relative;
  border-radius: 3px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-links a:hover::before {
  width: 80%;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  font-size: 14px;
  margin: 0;
}

.privacy-content a {
  color: var(--accent);
}

#accept-privacy {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

#accept-privacy:hover {
  background: #c29d2f;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }

  .main-nav.active {
    display: flex;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 60px 0;
  }

  section {
    padding: 40px 0;
  }

  .header-container {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 480px) {
  .services-grid,
  .features-grid,
  .portfolio-grid,
  .products-grid,
  .custom-grid,
  .process-steps,
  .approach-features,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}
