:root {
  --primary: #4a2c6a;
  --primary-light: #6b4d8a;
  --primary-dark: #331f4a;
  --accent: #e8c547;
  --accent-hover: #d4b13a;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --bg: #fafafa;
  --bg-alt: #f0eff4;
  --white: #ffffff;
  --border: #e0dde5;
  --shadow: rgba(74, 44, 106, 0.12);
  --shadow-lg: rgba(74, 44, 106, 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

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

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

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

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo svg {
  width: 40px;
  height: 40px;
}

nav {
  display: none;
}

nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 12px var(--shadow);
  padding: 1rem;
  gap: 0.5rem;
}

nav a {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  color: var(--text);
}

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

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.2s, opacity 0.2s;
}

.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);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

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

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.card p {
  color: var(--text-light);
}

.card-price {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

/* Feature blocks */
.features {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

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

.feature h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-light);
}

/* Alternating blocks */
.alternating {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.alt-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.alt-block-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.alt-block-content p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.alt-block-visual {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-block-visual svg {
  width: 60%;
  height: 60%;
}

/* Statistics */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  text-align: center;
}

.stat {
  flex: 1 1 140px;
  max-width: 200px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-dark .stat-number {
  color: var(--accent);
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px var(--shadow);
  position: relative;
}

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

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

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

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Quote section */
.quote-section {
  text-align: center;
  padding: 5rem 0;
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

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

.quote-author {
  color: var(--accent);
  font-weight: 600;
}

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

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

.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

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

.process-step-content p {
  color: var(--text-light);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Icon list */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.icon-list-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent);
}

.icon-list-item h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.icon-list-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.comparison-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px var(--shadow);
}

.comparison-item.highlighted {
  border: 3px solid var(--accent);
  position: relative;
}

.comparison-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.comparison-item h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.comparison-price {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.comparison-features {
  list-style: none;
}

.comparison-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-features li:last-child {
  border-bottom: none;
}

.comparison-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Values grid */
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.value-item {
  flex: 1 1 100%;
  text-align: center;
}

.value-item svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

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

.value-item p {
  color: var(--text-light);
}

/* Timeline / Milestones */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-5.5px);
}

.timeline-year {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

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

.timeline-item p {
  color: var(--text-light);
}

/* Panel */
.panel {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
}

.panel h2 {
  margin-bottom: 1rem;
}

.panel p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-light);
}

.contact-map {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.contact-map svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
}

/* Team */
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.team-member {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  background: var(--bg-alt);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 60px;
  height: 60px;
  color: var(--primary);
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team-member p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.industry-tag {
  background: var(--white);
  border: 2px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.2s;
}

.industry-tag:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary-dark);
}

/* Trust indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item svg {
  width: 40px;
  height: 40px;
}

.trust-item span {
  font-weight: 600;
  color: var(--primary);
}

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

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

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

.footer-col a:hover {
  color: var(--accent);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px var(--shadow-lg);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
}

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

.cookie-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: all 0.2s;
}

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

.cookie-btn-accept:hover {
  background: var(--accent-hover);
}

.cookie-btn-reject {
  background: var(--bg-alt);
  color: var(--text);
}

.cookie-btn-reject:hover {
  background: var(--border);
}

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

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
  color: var(--primary);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 0.5rem;
  line-height: 1;
}

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

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

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

.cookie-category-header h4 {
  color: var(--primary);
  font-size: 1rem;
}

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 26px;
  transition: 0.2s;
}

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

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

.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-category p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Legal pages */
.legal-content {
  padding: 3rem 0;
}

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

.legal-content h2 {
  color: var(--primary);
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* Thank you page */
.thank-you {
  text-align: center;
  padding: 6rem 0;
}

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

.thank-you h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you p {
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Highlight panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--accent) 0%, #f0d55a 100%);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
}

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

.highlight-panel p {
  color: var(--primary);
}

/* Text columns */
.text-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text-column h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.text-column p {
  color: var(--text-light);
}

/* Media queries */
@media (min-width: 640px) {
  .card {
    flex: 1 1 calc(50% - 0.75rem);
  }

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

  .text-columns {
    flex-direction: row;
  }

  .text-column {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }

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

  .hero-icon {
    width: 100px;
    height: 100px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  nav {
    display: flex;
    gap: 0.5rem;
    position: static;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }

  .feature {
    flex-direction: row;
    text-align: left;
  }

  .feature:nth-child(even) {
    flex-direction: row-reverse;
  }

  .feature-content {
    flex: 1;
  }

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

  .alt-block:nth-child(even) {
    flex-direction: row-reverse;
  }

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

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1 1 calc(50% - 1rem);
  }

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

  .comparison-item {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-info {
    flex: 1;
  }

  .contact-map {
    flex: 1;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
  }

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

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .value-item {
    flex: 1 1 calc(25% - 1.5rem);
  }

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