
:root {
  --color-primary: #1E5F74;
  --color-secondary: #4BA8A1;
  --color-accent: #F68E5F;
  --color-bg-light: #F8F9FA;
  --color-bg-medium: #E9ECEF;
  --color-text-primary: #343A40;
  --color-text-secondary: #6C757D;
  --color-alert: #D9534F;
  --color-success: #28A745;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
  --transition: all 0.3s ease;
}


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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-text-primary);
  line-height: 1.6;
  background-color: var(--color-bg-light);
}

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

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

a:hover,
a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-primary);
}

p {
  margin-bottom: 1.5rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}


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


.section {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}


.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background-color: var(--color-primary);
  color: white;
}

.button:hover,
.button:focus {
  background-color: var(--color-secondary);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

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

.button-accent:hover,
.button-accent:focus {
  background-color: #e57d4e;
}

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

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


.header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo svg,
.logo img {
  height: 40px;
  width: auto;
}


.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 0.75rem;
}

.nav-link {
  display: block;
  padding: 0.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-cta {
  margin-left: 1rem;
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--color-text-primary);
}

.menu-close {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 250px;
    background-color: white;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    padding: 0.75rem 0;
    width: 100%;
  }

  .nav-cta {
    margin: 1rem 0 0;
    width: 100%;
  }

  .menu-close {
    align-self: flex-end;
    margin-bottom: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}


.hero {
  background-color: var(--color-primary);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-image {
  flex: 1;
  padding-left: 2rem;
  max-width: 500px;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    padding-left: 0;
    margin-top: 2rem;
    max-width: 400px;
  }

  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

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


.features {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

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

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}


.interactive-block {
  background-color: var(--color-bg-medium);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 4rem;
}

.privacy-checker {
  max-width: 700px;
  margin: 0 auto;
}

.privacy-checker-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.privacy-checker-description {
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: var(--border-radius);
  transition: border-color 0.15s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(30, 95, 116, 0.25);
}

.form-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.privacy-results {
  margin-top: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  display: none;
}

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

.result-title {
  margin-bottom: 1rem;
}

.result-score {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.score-indicator {
  height: 20px;
  border-radius: 10px;
  background-color: #e9ecef;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: 1rem;
}

.score-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: width 0.5s ease;
}

.score-low {
  background-color: var(--color-alert);
}

.score-medium {
  background-color: #ffc107;
}

.score-high {
  background-color: var(--color-success);
}

.result-recommendations {
  margin-top: 1.5rem;
}

.result-recommendations ul {
  list-style-type: none;
  padding-left: 0;
}

.result-recommendations li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.result-recommendations li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
}


.resources {
  padding: 4rem 0;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.resource-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.resource-content {
  padding: 1.5rem;
}

.resource-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 600;
}

.resource-link svg {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.resource-link:hover svg {
  transform: translateX(3px);
}


.contact {
  padding: 5rem 0;
  background-color: var(--color-bg-medium);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
}

.form-check {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 0.75rem;
}

.form-check-label {
  font-size: 0.875rem;
}

.form-check-label a {
  font-weight: 600;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
}


.steps {
  padding: 5rem 0;
}

.steps-title {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 0 1rem;
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50px;
  width: 20%;
  height: 2px;
  background-color: var(--color-bg-medium);
}

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

.step-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}


.footer {
  background-color: var(--color-primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.footer-logo svg,
.footer-logo img {
  height: 40px;
  width: auto;
  fill: white;
}

.footer-description {
  margin-bottom: 1.5rem;
}

.footer-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: white;
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: white;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
}

.cookie-title {
  margin-bottom: 0.5rem;
}

.cookie-description {
  margin-bottom: 0;
}

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

.cookie-settings {
  background-color: white;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.cookie-settings:hover {
  background-color: var(--color-bg-medium);
  color: var(--color-primary);
}

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

.cookie-decline {
  background-color: var(--color-text-secondary);
  color: white;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

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

.cookie-modal-title {
  margin-bottom: 0;
}

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

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

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

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

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

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

.cookie-category-title {
  margin-bottom: 0;
  font-size: 1.125rem;
}

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg-medium);
  transition: .4s;
  border-radius: 34px;
}

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

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

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--color-success);
}

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

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

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


.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-success);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}


.thank-you {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 0;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-success);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-text {
  margin: 0 auto 2rem;
  max-width: 600px;
}


.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.article-header {
  margin-bottom: 3rem;
}

.article-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.article-meta {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content img {
  margin: 2rem auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.article-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-secondary);
}


.about-section {
  padding: 4rem 0;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-title {
  margin-bottom: 2rem;
  text-align: center;
}

.about-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.about-item {
  margin-bottom: 3rem;
}

.about-item:last-child {
  margin-bottom: 0;
}

.about-item-title {
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}


.contact-page {
  padding: 4rem 0;
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.contact-icon {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-map {
  height: 400px;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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


.policy-page {
  padding: 4rem 0;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.policy-title {
  margin-bottom: 1.5rem;
}

.policy-date {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section-title {
  margin-bottom: 1.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-list {
  padding-left: 1.5rem;
}

.policy-list li {
  margin-bottom: 0.75rem;
}


.privacy-settings {
  padding: 4rem 0;
}

.privacy-settings-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-settings-title {
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-settings-section {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.privacy-settings-section:last-child {
  margin-bottom: 0;
}

.privacy-settings-section-title {
  margin-bottom: 2rem;
}

.rights-list {
  margin-top: 1.5rem;
}

.rights-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-bg-medium);
}

.rights-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.rights-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}


.instructions {
  padding: 4rem 0;
}

.instructions-title {
  text-align: center;
  margin-bottom: 3rem;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.instruction-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.instruction-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.instruction-content {
  padding: 1.5rem;
}

.instruction-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.instruction-excerpt {
  margin-bottom: 1.5rem;
}


.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }

.icon {
  width: 24px;
  height: 24px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

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

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-light { color: var(--color-bg-light); }
.text-dark { color: var(--color-text-primary); }
.text-muted { color: var(--color-text-secondary); }

.rounded { border-radius: var(--border-radius); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }


.iti {width: 100%}