@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap');

:root {
  --primary: #2C3E50;
  --secondary: #3498DB;
  --accent: #E67E22;
  --background: #F9F9F9;
  --light-wood: #E6D2B5;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --light-gray: #ECEFF1;
  --success: #2ECC71;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.03);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover, a:focus {
  color: var(--secondary);
  outline: none;
}

button:focus, a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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


h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--space-md);
}

.fv-text-small {
  font-size: 0.875rem;
}

.fv-text-large {
  font-size: 1.125rem;
}

.fv-text-xl {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.fv-text-center {
  text-align: center;
}

.fv-text-bold {
  font-weight: 700;
}

.fv-text-medium {
  font-weight: 500;
}

.fv-text-light {
  font-weight: 300;
}

.fv-text-primary {
  color: var(--primary);
}

.fv-text-secondary {
  color: var(--secondary);
}

.fv-text-accent {
  color: var(--accent);
}

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


.fv-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.fv-main {
  flex: 1;
}

.fv-section {
  padding: var(--space-xl) 0;
}

.fv-section-lg {
  padding: var(--space-xxl) 0;
}

.fv-layout {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.fv-layout-narrow {
  max-width: 800px;
}

.fv-layout-wide {
  max-width: 1400px;
}

.fv-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .fv-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fv-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .fv-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fv-flex {
  display: flex;
}

.fv-flex-column {
  flex-direction: column;
}

.fv-flex-center {
  justify-content: center;
  align-items: center;
}

.fv-flex-between {
  justify-content: space-between;
}

.fv-flex-start {
  justify-content: flex-start;
}

.fv-flex-end {
  justify-content: flex-end;
}

.fv-flex-wrap {
  flex-wrap: wrap;
}

.fv-flex-gap {
  gap: var(--space-md);
}

.fv-flex-gap-lg {
  gap: var(--space-lg);
}


.fv-mt-xs { margin-top: var(--space-xs); }
.fv-mt-sm { margin-top: var(--space-sm); }
.fv-mt-md { margin-top: var(--space-md); }
.fv-mt-lg { margin-top: var(--space-lg); }
.fv-mt-xl { margin-top: var(--space-xl); }

.fv-mb-xs { margin-bottom: var(--space-xs); }
.fv-mb-sm { margin-bottom: var(--space-sm); }
.fv-mb-md { margin-bottom: var(--space-md); }
.fv-mb-lg { margin-bottom: var(--space-lg); }
.fv-mb-xl { margin-bottom: var(--space-xl); }

.fv-my-xs { margin-top: var(--space-xs); margin-bottom: var(--space-xs); }
.fv-my-sm { margin-top: var(--space-sm); margin-bottom: var(--space-sm); }
.fv-my-md { margin-top: var(--space-md); margin-bottom: var(--space-md); }
.fv-my-lg { margin-top: var(--space-lg); margin-bottom: var(--space-lg); }
.fv-my-xl { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }

.fv-mx-auto { margin-inline: auto; }

.fv-pt-xs { padding-top: var(--space-xs); }
.fv-pt-sm { padding-top: var(--space-sm); }
.fv-pt-md { padding-top: var(--space-md); }
.fv-pt-lg { padding-top: var(--space-lg); }
.fv-pt-xl { padding-top: var(--space-xl); }

.fv-pb-xs { padding-bottom: var(--space-xs); }
.fv-pb-sm { padding-bottom: var(--space-sm); }
.fv-pb-md { padding-bottom: var(--space-md); }
.fv-pb-lg { padding-bottom: var(--space-lg); }
.fv-pb-xl { padding-bottom: var(--space-xl); }

.fv-py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.fv-py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.fv-py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.fv-py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.fv-py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.fv-px-xs { padding-inline: var(--space-xs); }
.fv-px-sm { padding-inline: var(--space-sm); }
.fv-px-md { padding-inline: var(--space-md); }
.fv-px-lg { padding-inline: var(--space-lg); }
.fv-px-xl { padding-inline: var(--space-xl); }

.fv-p-xs { padding: var(--space-xs); }
.fv-p-sm { padding: var(--space-sm); }
.fv-p-md { padding: var(--space-md); }
.fv-p-lg { padding: var(--space-lg); }
.fv-p-xl { padding: var(--space-xl); }


.fv-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  transition: all var(--transition-normal);
}

.fv-header-scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

.fv-logo {
  width: 180px;
  height: auto;
}

.fv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fv-nav-links {
  display: none;
}

.fv-nav-links a {
  margin-inline-start: var(--space-lg);
  font-weight: 500;
  position: relative;
}

.fv-nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary);
  transition: width var(--transition-normal);
}

.fv-nav-links a:hover::after,
.fv-nav-links a:focus::after,
.fv-nav-links a.fv-active::after {
  width: 100%;
}

.fv-nav-links a.fv-active {
  color: var(--secondary);
}

.fv-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.fv-mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--transition-fast);
}

.fv-mobile-toggle.fv-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.fv-mobile-toggle.fv-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.fv-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xxl) var(--space-lg);
  transition: right var(--transition-normal);
  z-index: 100;
  overflow-y: auto;
}

.fv-mobile-menu.fv-active {
  right: 0;
}

.fv-mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.fv-mobile-menu-links a {
  font-size: 1.25rem;
  font-weight: 500;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--light-gray);
}

.fv-mobile-menu-links a.fv-active {
  color: var(--secondary);
}

.fv-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 90;
}

.fv-overlay.fv-active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .fv-nav-links {
    display: flex;
  }
  
  .fv-mobile-toggle {
    display: none;
  }
}

.fv-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.fv-footer a {
  color: var(--light-gray);
}

.fv-footer a:hover,
.fv-footer a:focus {
  color: var(--white);
}

.fv-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .fv-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.fv-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.fv-footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
}

.fv-button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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

.fv-button-primary:hover {
  background-color: #1a2530;
  color: var(--white);
}

.fv-button-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.fv-button-secondary:hover {
  background-color: #217dbb;
  color: var(--white);
}

.fv-button-accent {
  background-color: var(--accent);
  color: var(--white);
}

.fv-button-accent:hover {
  background-color: #d35400;
  color: var(--white);
}

.fv-button-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

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

.fv-button-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

.fv-button-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

.fv-button-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.fv-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.fv-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fv-card-content {
  padding: var(--space-lg);
}

.fv-card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.fv-card-subtitle {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.fv-form-group {
  margin-bottom: var(--space-lg);
}

.fv-form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.fv-form-input,
.fv-form-textarea,
.fv-form-select {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.fv-form-input:focus,
.fv-form-textarea:focus,
.fv-form-select:focus {
  border-color: var(--secondary);
  outline: none;
}

.fv-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.fv-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.fv-form-checkbox input {
  margin-top: 0.25rem;
}

.fv-form-checkbox label {
  font-size: 0.875rem;
  line-height: 1.4;
}

.fv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.fv-badge-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.fv-badge-accent {
  background-color: var(--accent);
  color: var(--white);
}

.fv-badge-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.fv-hero {
  position: relative;
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
  overflow: hidden;
}

.fv-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.fv-hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.fv-hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: var(--space-xl);
  color: var(--text-light);
}

.fv-hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  background-image: url('../images/financial-dashboard.jpg');
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .fv-hero-background {
    width: 50%;
    opacity: 1;
  }
}

.fv-feature {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.fv-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.fv-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
  margin-bottom: var(--space-md);
}

.fv-feature-icon i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.fv-feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.fv-testimonial {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.fv-testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.fv-testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.3;
  line-height: 1;
}

.fv-testimonial-author {
  display: flex;
  align-items: center;
}

.fv-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--space-md);
  object-fit: cover;
}

.fv-testimonial-name {
  font-weight: 500;
  margin-bottom: 2px;
}

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

.fv-stat {
  text-align: center;
  padding: var(--space-lg);
}

.fv-stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--space-xs);
}

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

.fv-accordion {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.fv-accordion-header {
  padding: var(--space-md);
  background-color: var(--white);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fv-accordion-icon {
  transition: transform var(--transition-fast);
}

.fv-accordion-header.fv-active .fv-accordion-icon {
  transform: rotate(180deg);
}

.fv-accordion-content {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.fv-accordion-content.fv-active {
  padding: var(--space-md);
  max-height: 1000px;
}

.fv-tabs {
  margin-bottom: var(--space-lg);
}

.fv-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fv-tabs-nav-item {
  padding: var(--space-md) var(--space-lg);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.fv-tabs-nav-item.fv-active {
  border-bottom-color: var(--secondary);
  color: var(--secondary);
}

.fv-tabs-content {
  display: none;
}

.fv-tabs-content.fv-active {
  display: block;
}

.fv-alert {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.fv-alert-success {
  background-color: rgba(46, 204, 113, 0.1);
  border-left: 4px solid var(--success);
}

.fv-alert-info {
  background-color: rgba(52, 152, 219, 0.1);
  border-left: 4px solid var(--secondary);
}

.fv-alert-warning {
  background-color: rgba(230, 126, 34, 0.1);
  border-left: 4px solid var(--accent);
}

.fv-alert-danger {
  background-color: rgba(231, 76, 60, 0.1);
  border-left: 4px solid #e74c3c;
}

.fv-alert-icon {
  font-size: 1.5rem;
}

.fv-alert-content {
  flex: 1;
}

.fv-alert-title {
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.fv-alert-message {
  margin-bottom: 0;
}

.fv-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.fv-modal.fv-active {
  opacity: 1;
  visibility: visible;
}

.fv-modal-content {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.fv-modal.fv-active .fv-modal-content {
  transform: translateY(0);
}

.fv-modal-header {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fv-modal-title {
  font-weight: 500;
  margin-bottom: 0;
}

.fv-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

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

.fv-modal-body {
  padding: var(--space-lg);
}

.fv-modal-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
}

.fv-tooltip {
  position: relative;
  display: inline-block;
}

.fv-tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.fv-tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary) transparent transparent transparent;
}

.fv-tooltip:hover .fv-tooltip-content {
  opacity: 1;
  visibility: visible;
}

.fv-divider {
  height: 1px;
  background-color: var(--light-gray);
  margin: var(--space-lg) 0;
}

.fv-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.fv-tag-primary {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--primary);
}

.fv-tag-secondary {
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--secondary);
}

.fv-tag-accent {
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--accent);
}

.fv-progress {
  width: 100%;
  height: 8px;
  background-color: var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.fv-progress-bar {
  height: 100%;
  background-color: var(--secondary);
  border-radius: var(--radius-sm);
  transition: width var(--transition-normal);
}

.fv-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.fv-progress-title {
  font-weight: 500;
}

.fv-progress-value {
  font-weight: 500;
  color: var(--secondary);
}

.fv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.fv-avatar-sm {
  width: 30px;
  height: 30px;
}

.fv-avatar-lg {
  width: 60px;
  height: 60px;
}

.fv-avatar-xl {
  width: 100px;
  height: 100px;
}

.fv-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.fv-breadcrumb-item {
  display: flex;
  align-items: center;
}

.fv-breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin: 0 var(--space-xs);
  color: var(--text-light);
}

.fv-breadcrumb-item a {
  color: var(--text-light);
}

.fv-breadcrumb-item a:hover {
  color: var(--secondary);
}

.fv-breadcrumb-item:last-child a {
  color: var(--primary);
  pointer-events: none;
}

.fv-pagination {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.fv-pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  margin: 0 var(--space-xs);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.fv-pagination-item:hover {
  background-color: var(--light-gray);
}

.fv-pagination-item.fv-active {
  background-color: var(--secondary);
  color: var(--white);
}

.fv-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 90;
}

.fv-scroll-top.fv-active {
  opacity: 1;
  visibility: visible;
}

.fv-scroll-top:hover {
  background-color: var(--secondary);
}

.fv-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
  max-width: 300px;
}

.fv-notification.fv-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.fv-notification-title {
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.fv-notification-message {
  font-size: 0.875rem;
  margin-bottom: 0;
}


.fv-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.fv-cookie-consent.fv-active {
  transform: translateY(0);
}

.fv-cookie-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.fv-cookie-text {
  margin-bottom: var(--space-md);
}

.fv-cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.fv-cookie-settings {
  max-width: 600px;
}

.fv-cookie-category {
  margin-bottom: var(--space-md);
}

.fv-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.fv-cookie-category-title {
  font-weight: 500;
  margin-bottom: 0;
}

.fv-cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

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

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

.fv-cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: var(--transition-fast);
  border-radius: 50%;
}

.fv-cookie-switch input:checked + .fv-cookie-slider {
  background-color: var(--secondary);
}

.fv-cookie-switch input:focus + .fv-cookie-slider {
  box-shadow: 0 0 1px var(--secondary);
}

.fv-cookie-switch input:checked + .fv-cookie-slider:before {
  transform: translateX(16px);
}

.fv-cookie-category-description {
  font-size: 0.875rem;
  color: var(--text-light);
}

.fv-cookie-manage-button {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}


.fv-bg-primary { background-color: var(--primary); }
.fv-bg-secondary { background-color: var(--secondary); }
.fv-bg-accent { background-color: var(--accent); }
.fv-bg-light { background-color: var(--light-gray); }
.fv-bg-white { background-color: var(--white); }
.fv-bg-light-wood { background-color: var(--light-wood); }

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

.fv-rounded-sm { border-radius: var(--radius-sm); }
.fv-rounded-md { border-radius: var(--radius-md); }
.fv-rounded-lg { border-radius: var(--radius-lg); }
.fv-rounded-full { border-radius: 9999px; }

.fv-shadow-sm { box-shadow: var(--shadow-sm); }
.fv-shadow-md { box-shadow: var(--shadow-md); }
.fv-shadow-lg { box-shadow: var(--shadow-lg); }

.fv-border { border: 1px solid var(--light-gray); }
.fv-border-top { border-top: 1px solid var(--light-gray); }
.fv-border-bottom { border-bottom: 1px solid var(--light-gray); }

.fv-w-full { width: 100%; }
.fv-h-full { height: 100%; }

.fv-position-relative { position: relative; }
.fv-position-absolute { position: absolute; }
.fv-position-fixed { position: fixed; }

.fv-overflow-hidden { overflow: hidden; }
.fv-overflow-auto { overflow: auto; }

.fv-transition { transition: all var(--transition-normal); }

.fv-opacity-50 { opacity: 0.5; }
.fv-opacity-75 { opacity: 0.75; }

.fv-hidden { display: none; }
.fv-visible { display: block; }

@media (min-width: 768px) {
  .fv-md-visible { display: block; }
  .fv-md-hidden { display: none; }
}

@media (min-width: 1024px) {
  .fv-lg-visible { display: block; }
  .fv-lg-hidden { display: none; }
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fv-animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.fv-animate-slide-up {
  animation: slideUp 0.5s ease forwards;
}

.fv-animate-slide-down {
  animation: slideDown 0.5s ease forwards;
}

.fv-animate-pulse {
  animation: pulse 2s infinite;
}


@media print {
  .fv-no-print {
    display: none !important;
  }
  
  body {
    background-color: var(--white);
  }
  
  .fv-page {
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: underline;
  }
}