* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  color: #2c1810;
  background-color: #faf8f6;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c1810;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
p {
  margin-bottom: 1rem;
  color: #5d4e37;
}
a {
  color: #8b2635;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #a0303f;
}
.header {
  background: linear-gradient(135deg, #faf8f6 0%, #f5f2ed 100%);
  box-shadow: 0 2px 10px rgba(44, 24, 16, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo h1 {
  font-size: 1.8rem;
  color: #8b2635;
  margin-bottom: 0;
  font-weight: 700;
}
.logo span {
  font-size: 0.9rem;
  color: #5d4e37;
  font-style: italic;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-link {
  font-weight: 500;
  color: #2c1810;
  position: relative;
  transition: all 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #8b2635;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b2635;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #2c1810;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.hero {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #faf8f6 0%, #f5f2ed 50%, #ede7d9 100%);
  position: relative;
  overflow: hidden;
}
.hero::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="%23d4c4a8" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23d4c4a8" opacity="0.2"/><circle cx="40" cy="80" r="1" fill="%23d4c4a8" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
  z-index: 1;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text {
  animation: slideInLeft 1s ease-out;
}
.hero-title {
  font-size: 3rem;
  color: #2c1810;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #5d4e37;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(44, 24, 16, 0.2);
  transition: transform 0.3s ease;
}
.hero-image img:hover {
  transform: scale(1.05);
}
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #8b2635, #a0303f);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(139, 38, 53, 0.3);
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  background: linear-gradient(135deg, #a0303f, #8b2635);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 38, 53, 0.4);
  color: #fff;
}
.secondary-button {
  display: inline-block;
  background: rgba(0, 0, 0, 0);
  color: #8b2635;
  padding: 12px 25px;
  border: 2px solid #8b2635;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.secondary-button:hover {
  background: #8b2635;
  color: #fff;
  transform: translateY(-2px);
}
.link-button {
  color: #8b2635;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}
.link-button:hover {
  border-bottom-color: #8b2635;
}
.features {
  padding: 5rem 0;
  background: #faf8f6;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c1810;
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #8b2635;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}
.feature-icon {
  margin-bottom: 1.5rem;
}
.feature-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.feature-card h3 {
  color: #2c1810;
  margin-bottom: 1rem;
}
.feature-card p {
  color: #5d4e37;
}
.products-preview {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f2ed 0%, #ede7d9 100%);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
}
.product-card.visible {
  opacity: 1;
  transform: scale(1);
}
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}
.product-image {
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-info {
  padding: 1.5rem;
}
.product-info h3 {
  color: #2c1810;
  margin-bottom: 0.5rem;
}
.product-info p {
  color: #5d4e37;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.price {
  font-weight: 700;
  color: #8b2635;
  font-size: 1.2rem;
}
.product-button {
  background: #8b2635;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}
.product-button:hover {
  background: #a0303f;
  transform: translateY(-2px);
}
.values {
  padding: 5rem 0;
  background: #faf8f6;
}
.values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.values-text h2 {
  color: #2c1810;
  margin-bottom: 1.5rem;
}
.values-text p {
  color: #5d4e37;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.values-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(44, 24, 16, 0.2);
}
.page-hero {
  margin-top: 80px;
  padding: 3rem 0;
  background: linear-gradient(135deg, #f5f2ed 0%, #ede7d9 100%);
  text-align: center;
}
.page-title {
  font-size: 3rem;
  color: #2c1810;
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 1.2rem;
  color: #5d4e37;
}
.collections {
  padding: 3rem 0;
}
.collection-section {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.collection-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.collection-header {
  text-align: center;
  margin-bottom: 2rem;
}
.collection-header h2 {
  color: #2c1810;
  margin-bottom: 0.5rem;
}
.collection-header p {
  color: #5d4e37;
  font-style: italic;
}
.our-story {
  padding: 3rem 0;
  background: #faf8f6;
}
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.story-text h2 {
  color: #2c1810;
  margin-bottom: 1.5rem;
}
.story-text p {
  color: #5d4e37;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.values-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f2ed 0%, #ede7d9 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 24, 16, 0.15);
}
.value-icon {
  margin-bottom: 1.5rem;
}
.value-icon img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}
.mission {
  padding: 5rem 0;
  background: #faf8f6;
}
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.stat {
  text-align: center;
}
.stat .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b2635;
}
.stat .label {
  font-size: 0.9rem;
  color: #5d4e37;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team-values {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f2ed 0%, #ede7d9 100%);
}
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-item {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 24, 16, 0.15);
}
.feature-item h3 {
  color: #2c1810;
  margin-bottom: 1rem;
}
.feature-item p {
  color: #5d4e37;
  line-height: 1.6;
}
.contact-form-section {
  padding: 3rem 0;
  background: #faf8f6;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h2 {
  color: #2c1810;
  margin-bottom: 1rem;
}
.contact-info p {
  color: #5d4e37;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-details {
  margin-bottom: 2rem;
}
.contact-item {
  margin-bottom: 1rem;
}
.contact-item strong {
  color: #2c1810;
}
.contact-item a {
  color: #8b2635;
}
.contact-item a:hover {
  color: #a0303f;
}
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.contact-form.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-form h3 {
  color: #2c1810;
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c1810;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ede7d9;
  border-radius: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #faf8f6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b2635;
}
.submit-button {
  background: linear-gradient(135deg, #8b2635, #a0303f);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
}
.submit-button:hover {
  background: linear-gradient(135deg, #a0303f, #8b2635);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 38, 53, 0.4);
}
.terms-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f5f2ed 0%, #ede7d9 100%);
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.terms-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.terms-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.terms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 24, 16, 0.15);
}
.terms-card h3 {
  color: #2c1810;
  margin-bottom: 1rem;
}
.terms-card ul {
  list-style: none;
  margin-bottom: 1rem;
}
.terms-card li {
  margin-bottom: 0.5rem;
  color: #5d4e37;
  position: relative;
  padding-left: 20px;
}
.terms-card li::before {
  content: "•";
  color: #8b2635;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.faq-section {
  padding: 3rem 0;
  background: #faf8f6;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(44, 24, 16, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background: #f5f2ed;
}
.faq-question h4 {
  color: #2c1810;
  margin: 0;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #8b2635;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: #5d4e37;
  line-height: 1.6;
}
.legal-page {
  margin-top: 80px;
  padding: 3rem 0;
  background: #faf8f6;
}
.legal-content {
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}
.last-updated {
  font-style: italic;
  color: #5d4e37;
  margin-bottom: 2rem;
  text-align: center;
}
.legal-section {
  margin-bottom: 2rem;
}
.legal-section h2 {
  color: #2c1810;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ede7d9;
  padding-bottom: 0.5rem;
}
.legal-section h3 {
  color: #2c1810;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.legal-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.legal-section li {
  margin-bottom: 0.5rem;
  color: #5d4e37;
}
.footer {
  background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
  color: #fff;
  padding: 3rem 0 1rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
  color: #d4c4a8;
  margin-bottom: 1rem;
}
.footer-section p {
  color: #b8a082;
  margin-bottom: 0.5rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #b8a082;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #d4c4a8;
}
.footer-bottom {
  border-top: 1px solid #3d2a1a;
  padding-top: 1rem;
  text-align: center;
}
.footer-bottom p {
  color: #b8a082;
  margin: 0;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 24, 16, 0.8);
  backdrop-filter: blur(5px);
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.3);
}
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #5d4e37;
  transition: color 0.3s ease;
}
.close:hover {
  color: #8b2635;
}
.modal-content h2 {
  color: #2c1810;
  margin-bottom: 1rem;
  text-align: center;
}
.modal-content p {
  color: #5d4e37;
  text-align: center;
  line-height: 1.6;
}
.text-center {
  text-align: center;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.hover-lift {
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.hover-lift.visible {
  opacity: 1;
  transform: translateY(0);
}
.hover-lift:hover {
  transform: translateY(-10px);
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100px;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(44, 24, 16, 0.1);
    padding: 2rem 0;
    gap: 1rem;
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    height: 250px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-width: auto;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .values-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .values-image {
    order: -1;
  }
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-image {
    order: -1;
    margin: 0 auto;
    img {
      max-width: 320px;
    }
  }
  .mission-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mission-image {
    order: -1;
      margin: 0 auto;
    img {
      max-width: 320px;
    }
  }
  .mission-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .terms-grid {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 2rem 1rem;
  }
  .page-title {
    font-size: 2rem;
  }
  .modal-content {
    margin: 20% auto;
    padding: 1.5rem;
  }
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .features,
  .products-preview,
  .values,
  .collections {
    padding: 3rem 0;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .feature-card,
  .product-card,
  .terms-card {
    padding: 1.5rem;
  }
  .legal-content {
    padding: 1.5rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero::before {
    opacity: 0.3;
  }
}
@media print {
  .header,
  .footer,
  .modal,
  .hamburger {
    display: none;
  }
  .hero {
    margin-top: 0;
  }
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
  }
  .page-title {
    font-size: 18pt;
  }
  .section-title {
    font-size: 16pt;
  }
}
