:root {
  --color-primary: #8b5a5a;
  --color-primary-dark: #6d4545;
  --color-secondary: #d4a574;
  --color-accent: #c9a87c;
  --color-dark: #2d2a26;
  --color-light: #faf8f5;
  --color-gray: #6b6b6b;
  --color-gray-light: #e8e4df;
  --color-white: #ffffff;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-light);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-soft);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: 1px;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--color-dark);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

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

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-dark);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
  padding: 1.5rem;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  display: block;
  color: var(--color-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-light);
  font-size: 1.1rem;
}

.nav-mobile a:hover {
  color: var(--color-primary);
}

/* Main Content */
main {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-gray-light) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

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

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

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

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

/* Sections */
section {
  padding: 4rem 1.5rem;
}

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

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

.section-accent {
  background-color: var(--color-gray-light);
}

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

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

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

.section-header p {
  color: var(--color-gray);
}

/* Cards */
.cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
}

.card h3 {
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-gray);
  margin-bottom: 0;
}

.card-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 1rem;
}

/* Service Cards */
.service-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
}

.service-card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 1.5rem;
  color: var(--color-white);
}

.service-card-header h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Features */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Alternating Content */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.content-block-text {
  flex: 1;
}

.content-block-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-block-visual svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* Testimonials */
.testimonial {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-secondary);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* Statistics */
.stats-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--color-gray);
  font-size: 1rem;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--color-light);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--color-gray);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Values */
.values-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.value-item h3 {
  margin-bottom: 0.75rem;
}

.value-item p {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.quote-author {
  font-size: 1rem;
  opacity: 0.9;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Company Info Box */
.company-info-box {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.company-info-box h3 {
  border-bottom: 2px solid var(--color-gray-light);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.info-label {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.info-value {
  color: var(--color-gray);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
}

.cta-section h2 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-dark);
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: 4rem 1.5rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--color-gray);
  max-width: 500px;
  margin-bottom: 2rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--color-secondary);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-btn-accept {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background-color: var(--color-primary-dark);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
  border-color: var(--color-white);
}

.cookie-btn-reject {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-btn-reject:hover {
  color: var(--color-white);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--color-white);
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
  padding: 0.25rem;
}

.cookie-modal-close:hover {
  color: var(--color-dark);
}

.cookie-option {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-option-header h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.cookie-option p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-gray-light) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
}

/* Comparison */
.comparison-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-item {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.comparison-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  font-weight: 600;
}

.comparison-body {
  padding: 1.5rem;
}

.comparison-body ul {
  list-style: none;
}

.comparison-body li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.comparison-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* Industries */
.industries-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.industry-tag {
  background-color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  color: var(--color-dark);
}

/* Milestones */
.milestones-container {
  position: relative;
}

.milestone-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.milestone-year {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  min-width: 80px;
  font-weight: 600;
}

.milestone-content {
  flex: 1;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-gray-light);
}

.milestone-item:last-child .milestone-content {
  border-bottom: none;
}

.milestone-content h3 {
  margin-bottom: 0.5rem;
}

.milestone-content p {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-gray-light) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Media Queries */
@media (min-width: 576px) {
  h1 {
    font-size: 2.8rem;
  }

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

  .stats-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 1;
    min-width: 150px;
  }

  .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner p {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .cards-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: calc(50% - 0.75rem);
  }

  .content-block {
    flex-direction: row;
  }

  .content-block.reverse {
    flex-direction: row-reverse;
  }

  .values-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-item {
    flex: 1;
    min-width: calc(50% - 1rem);
  }

  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-brand {
    flex: 2;
    min-width: 250px;
  }

  .footer-links {
    flex: 1;
    min-width: 150px;
  }

  .comparison-container {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .quote-text {
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  section {
    padding: 5rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .card {
    min-width: calc(33.333% - 1rem);
  }

  .value-item {
    min-width: calc(25% - 1.5rem);
  }

  .features-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1;
    min-width: calc(50% - 1rem);
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }

  .header-inner {
    padding: 1rem 2rem;
  }
}
