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

:root {
  --primary: #2d3748;
  --accent: #d97706;
  --light: #fafaf9;
  --white: #ffffff;
  --text: #1a202c;
  --text-light: #718096;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.5rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.hide {
  transform: translateX(-50%) translateY(-150%);
}

.header-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 15px 40px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  position: relative;
  white-space: nowrap;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: var(--accent);
  opacity: 0.03;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.03;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 25s ease-in-out infinite reverse;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    border-radius: 60% 40% 50% 60% / 70% 30% 50% 60%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.page-hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  background: var(--light);
}

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

.page-hero h1 {
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 120px 0;
  position: relative;
}

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

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

.about-text h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.about-text p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
  color: var(--text-light);
  font-size: 16px;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: -30px;
  bottom: -30px;
  background: var(--accent);
  opacity: 0.08;
  border-radius: 30px;
  z-index: -1;
}

.about-image img {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

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

.features h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 4rem;
  letter-spacing: -1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: var(--white);
  padding: 50px 35px;
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

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

.products-preview h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 4rem;
  letter-spacing: -1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-card h3 {
  padding: 30px 30px 10px;
  color: var(--primary);
}

.product-card p {
  padding: 0 30px;
  font-size: 14px;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.product-card .btn-secondary {
  margin: 0 30px 30px;
  display: inline-block;
}

.process {
  background: var(--primary);
  color: var(--white);
  position: relative;
}

.process h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 4rem;
  letter-spacing: -1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(217, 119, 6, 0.3);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.step h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.step p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.cta {
  background: var(--light);
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.cta h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 45px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.3);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

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

.products h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 4rem;
  letter-spacing: -1px;
}

.product-item {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-details {
  padding: 35px;
}

.product-details h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-details p {
  font-size: 14px;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1.5rem 0;
}

.collection-info,
.print-info {
  background: var(--white);
}

.collection-info h2,
.print-info h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  background: var(--light);
  border-radius: 30px;
  border-left: 5px solid var(--accent);
}

.info-content p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
  color: var(--text-light);
  font-size: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-item {
  text-align: center;
  padding: 50px 35px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.info-item i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

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

.info-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

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

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: var(--white);
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-light);
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.contact-info-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--light);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #fef3e2;
}

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

.contact-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

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

.map-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.map-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.thank-you-section,
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  padding-top: 80px;
}

.thank-you-content,
.error-content {
  text-align: center;
  max-width: 600px;
  padding: 70px 50px;
  background: var(--white);
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}

.thank-you-content i {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.error-content h1 {
  font-size: 8rem;
  color: var(--accent);
}

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

.thank-you-content p,
.error-content p {
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: var(--text-light);
}

.policy-section {
  background: var(--white);
  padding: 180px 0 100px;
}

.policy-section h1 {
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.policy-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 3rem;
  font-style: italic;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.policy-content h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.policy-content p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
  color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1.5rem;
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 0.8rem;
  line-height: 1.9;
  color: var(--text-light);
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 50px 0;
}

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

.footer-info p {
  font-size: 14px;
  opacity: 0.8;
}

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

.footer-links a {
  color: var(--white);
  font-size: 13px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 30px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.privacy-popup.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.privacy-content p {
  flex: 1;
  font-size: 14px;
  opacity: 0.9;
}

.privacy-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-buttons button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 35px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.privacy-buttons a {
  color: var(--white);
  font-size: 14px;
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .features-grid,
  .products-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.2rem;
  }

  header {
    top: 15px;
    left: 15px;
    right: 15px;
    width: auto;
    transform: none;
  }

  header.hide {
    transform: translateY(-150%);
  }

  .header-container {
    padding: 12px 20px;
    gap: 20px;
    justify-content: space-between;
  }

  .logo {
    font-size: 1.2rem;
  }

  .main-nav {
    position: fixed;
    top: 75px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    min-height: 85vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .page-hero {
    padding: 130px 0 70px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image::before {
    content: none;
  }

  .features-grid,
  .products-grid,
  .info-grid,
  .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-image {
    height: 280px;
  }

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

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

  .privacy-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .privacy-buttons {
    flex-direction: column;
    width: 100%;
  }

  .privacy-buttons button {
    width: 100%;
  }

  section {
    padding: 70px 0;
  }

  .contact-form,
  .contact-info-wrapper,
  .info-content {
    padding: 30px;
  }

  .thank-you-content,
  .error-content {
    padding: 50px 35px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .header-container {
    padding: 10px 15px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .main-nav {
    top: 70px;
    left: 10px;
    right: 10px;
    padding: 15px;
  }

  .hero {
    padding-top: 90px;
    min-height: 90vh;
  }

  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 110px 0 50px;
  }

  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
    width: 40%;
    text-align: center;
  }

  .feature-card,
  .info-item {
    padding: 30px 20px;
  }

  .product-card h3,
  .product-card p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-card .btn-secondary {
    margin: 0 20px 25px;
  }

  .product-image {
    height: 240px;
  }

  .product-details {
    padding: 25px 20px;
  }

  section {
    padding: 50px 0;
  }

  .contact-form,
  .contact-info-wrapper {
    padding: 25px 20px;
  }

  .info-content {
    padding: 30px 20px;
  }

  .thank-you-content,
  .error-content {
    padding: 40px 25px;
  }

  .thank-you-content i {
    font-size: 4rem;
  }

  .error-content h1 {
    font-size: 5rem;
  }

  .privacy-popup {
    padding: 20px 15px;
  }

  footer {
    padding: 40px 0;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  header {
    top: 8px;
    left: 8px;
    right: 8px;
  }

  .header-container {
    padding: 8px 12px;
  }

  .logo {
    font-size: 1rem;
  }

  .main-nav {
    top: 60px;
    left: 8px;
    right: 8px;
    padding: 12px;
  }

  .main-nav a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.35rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }

  .feature-card,
  .info-item {
    padding: 25px 15px;
  }

  .product-details {
    padding: 20px 15px;
  }

  .contact-form,
  .contact-info-wrapper {
    padding: 20px 15px;
  }

  .info-content {
    padding: 25px 15px;
  }

  .privacy-popup {
    padding: 15px 10px;
  }
}
