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

:root {
  --primary: #2c5f4f;
  --secondary: #d4a574;
  --accent: #8b7355;
  --dark: #1a1a1a;
  --light: #666;
  --bg: #f8f6f3;
  --white: #ffffff;
  --border: #e0ddd8;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover { color: var(--secondary); }

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 18px 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.privacy-buttons {
  display: flex;
  gap: 12px;
}

.btn-accept, .btn-learn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--secondary);
  color: var(--dark);
}

.btn-accept:hover { background: #c99563; }

.btn-learn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-learn:hover {
  background: var(--white);
  color: var(--dark);
}

.header-main {
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
}

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

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  gap: 30px;
  z-index: 999;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 0;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary);
}

.hero-mega {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e4438 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--white);
  bottom: -80px;
  left: -80px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-mega-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-side {
  color: var(--white);
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero-text-side h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text-side p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary, .btn-outline, .btn-primary-large {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary, .btn-primary-large {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover, .btn-primary-large:hover {
  background: #c99563;
  transform: translateY(-2px);
}

.btn-primary-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-image-side {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--secondary);
  border-radius: 12px;
  z-index: -1;
}

.philosophy-section {
  padding: 70px 0;
  background: var(--white);
}

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

.philosophy-item {
  text-align: center;
}

.philosophy-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
  opacity: 0.8;
}

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

.philosophy-item p {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
  margin: 0;
}

.featured-work {
  padding: 70px 0;
  background: var(--bg);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header-center h2 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.section-header-center p {
  color: var(--light);
  font-size: 1.05rem;
  margin: 0;
}

.work-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
}

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

.work-content p {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.link-arrow {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}

.link-arrow:hover::after {
  transform: translateX(5px);
}

.products-highlight {
  padding: 70px 0;
  background: var(--white);
}

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

.product-modern-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-modern-card:hover {
  transform: translateY(-5px);
}

.product-modern-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--white);
}

.product-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modern-info {
  padding: 25px;
}

.product-modern-info h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.product-modern-info p {
  font-size: 14px;
  color: var(--light);
  margin-bottom: 1.2rem;
}

.product-modern-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.btn-text {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.btn-text:hover {
  border-bottom-color: var(--primary);
}

.process-modern {
  padding: 70px 0;
  background: var(--bg);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.process-text-side h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.process-text-side p {
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.process-steps-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.process-step-text h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.process-step-text p {
  font-size: 14px;
  color: var(--light);
  margin: 0;
  line-height: 1.7;
}

.testimonials-modern {
  padding: 70px 0;
  background: var(--white);
}

.testimonials-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-modern-card {
  background: var(--bg);
  padding: 30px;
  border-radius: 8px;
}

.testimonial-modern-card p {
  font-size: 14px;
  color: var(--light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-author strong {
  color: var(--primary);
  font-weight: 600;
  font-style: normal;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--light);
  font-style: normal;
}

.values-section {
  padding: 70px 0;
  background: var(--primary);
  color: var(--white);
}

.values-content h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-item h3 {
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.value-item p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
  margin: 0;
}

.contact-prompt {
  padding: 80px 0;
  background: var(--bg);
}

.contact-prompt-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.contact-prompt-content p {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 25px 0;
  font-size: 13px;
}

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

.footer-info p { margin: 0; }

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

.footer-links a {
  color: var(--white);
  font-size: 13px;
}

.footer-links a:hover { color: var(--secondary); }

.page-hero {
  background: var(--bg);
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--light);
  font-size: 1.1rem;
  margin: 0;
}

.products-main {
  padding: 60px 0;
}

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

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--light);
}

.products-showcase {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.product-item:nth-child(even) {
  direction: rtl;
}

.product-item:nth-child(even) > * {
  direction: ltr;
}

.product-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-description {
  color: var(--light);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.quality-section {
  padding: 60px 0;
  background: var(--bg);
}

.quality-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

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

.quality-item {
  text-align: center;
  padding: 20px;
}

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

.quality-item p {
  font-size: 14px;
  color: var(--light);
  margin: 0;
}

.customization-section {
  padding: 60px 0;
}

.custom-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.custom-text h2 {
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.custom-text p {
  color: var(--light);
  margin-bottom: 1.2rem;
}

.services-intro {
  padding: 60px 0;
  background: var(--bg);
}

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

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

.intro-content p {
  color: var(--light);
  line-height: 1.8;
}

.services-list {
  padding: 60px 0;
}

.services-list h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card {
  background: var(--bg);
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-card:hover { transform: translateY(-5px); }

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

.service-card p {
  font-size: 14px;
  color: var(--light);
  margin: 0;
  line-height: 1.7;
}

.consultation-process {
  padding: 60px 0;
  background: var(--bg);
}

.consultation-process h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.timeline-marker {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 14px;
  color: var(--light);
  margin: 0;
}

.testimonials-section {
  padding: 60px 0;
}

.testimonials-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

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

.testimonial-card {
  background: var(--bg);
  padding: 30px;
  border-radius: 8px;
  font-style: italic;
}

.testimonial-card p {
  color: var(--light);
  font-size: 14px;
  line-height: 1.7;
}

.testimonial-author {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e4438 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.contact-hero h1 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.contact-hero p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
}

.contact-main {
  padding: 60px 0;
}

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

.contact-info-side h2 {
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.contact-info-side > p {
  color: var(--light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.contact-item {
  display: flex;
  gap: 20px;
}

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

.contact-item p {
  font-size: 14px;
  color: var(--light);
  margin: 0;
}

.contact-form {
  background: var(--bg);
  padding: 35px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  margin-bottom: 25px;
}

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

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

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

.map-section {
  padding: 60px 0;
  background: var(--bg);
}

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

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  display: block;
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

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

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

.thankyou-content p,
.error-content p {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

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

.policy-section {
  padding: 60px 0;
}

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

.policy-content h1 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

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

.policy-content h3 {
  color: var(--accent);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.policy-content p {
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-left: 25px;
  margin-bottom: 1rem;
}

.policy-content li {
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
  .hero-mega-content,
  .process-layout,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text-side h1 {
    font-size: 2.8rem;
  }

  .philosophy-grid,
  .work-showcase,
  .products-modern-grid,
  .testimonials-modern-grid,
  .values-grid,
  .quality-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .product-item {
    grid-template-columns: 1fr;
  }

  .product-item:nth-child(even) {
    direction: ltr;
  }
}

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

  .menu-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
  }

  .hero-mega {
    padding: 60px 0 50px;
  }

  .hero-text-side h1 {
    font-size: 2.2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-buttons {
    width: 100%;
    justify-content: flex-start;
  }

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

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

@media (max-width: 480px) {
  body { font-size: 14px; }
  
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .container { padding: 0 15px; }

  .hero-mega { padding: 50px 0 40px; }
  .hero-text-side h1 { font-size: 1.9rem; }

  .philosophy-section,
  .featured-work,
  .products-highlight,
  .process-modern,
  .testimonials-modern,
  .values-section,
  .contact-prompt,
  .products-main,
  .quality-section,
  .customization-section,
  .services-intro,
  .services-list,
  .consultation-process,
  .testimonials-section,
  .contact-main,
  .map-section,
  .policy-section {
    padding: 40px 0;
  }

  .btn-primary,
  .btn-outline,
  .btn-primary-large {
    padding: 12px 24px;
    font-size: 14px;
  }

  .work-card,
  .service-card,
  .testimonial-modern-card,
  .testimonial-card {
    padding: 25px;
  }

  .product-img {
    height: 250px;
  }

  .contact-form {
    padding: 25px;
  }

  .philosophy-number {
    font-size: 3rem;
  }

  .step-circle,
  .timeline-marker {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

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

  .product-modern-image {
    height: 250px;
  }
}

@media (max-width: 320px) {
  body { font-size: 13px; }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }

  .logo a { font-size: 1.4rem; }

  .hero-text-side h1 { font-size: 1.6rem; }
  .hero-text-side p { font-size: 0.95rem; }

  .btn-primary,
  .btn-outline,
  .btn-primary-large {
    padding: 10px 20px;
    font-size: 13px;
  }

  .work-card,
  .service-card,
  .testimonial-modern-card,
  .testimonial-card {
    padding: 20px;
  }

  .product-img,
  .product-modern-image {
    height: 200px;
  }

  .contact-form {
    padding: 20px;
  }

  .philosophy-number {
    font-size: 2.5rem;
  }

  .step-circle,
  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
