/* Kzatronexnova - Custom CSS - Biophilic Design with Split-screen Dynamic Layout */

:root {
  /* Color System */
  --hwg-forest: #2C5545;
  --hwg-sage: #A8C6AD;
  --hwg-sand: #D9B88F;
  --hwg-dark: #2A2A2A;
  --hwg-light: #F7F7F2;
  --hwg-bg-light: #F7F9F7;
  --hwg-bg-medium: #E8EFE6;
  --hwg-error: #D15B5B;
  --hwg-success: #5B8A72;
  
  /* Gradients */
  --hwg-gradient-primary: linear-gradient(135deg, var(--hwg-forest), color-mix(in srgb, var(--hwg-forest) 80%, var(--hwg-sage)));
  --hwg-gradient-secondary: linear-gradient(135deg, var(--hwg-sage), color-mix(in srgb, var(--hwg-sage) 80%, var(--hwg-light)));
  
  /* Typography */
  --hwg-font-main: 'Lato', sans-serif;
  
  /* Spacing */
  --hwg-space-xs: 0.5rem;
  --hwg-space-sm: 1rem;
  --hwg-space-md: 1.5rem;
  --hwg-space-lg: 2.5rem;
  --hwg-space-xl: 4rem;
  
  /* Borders */
  --hwg-radius-sm: 4px;
  --hwg-radius-md: 8px;
  --hwg-radius-lg: 16px;
  --hwg-radius-round: 50%;
  
  /* Shadows */
  --hwg-shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --hwg-shadow-medium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --hwg-transition-fast: 0.2s ease;
  --hwg-transition-medium: 0.3s ease;
  --hwg-transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--hwg-font-main);
  color: var(--hwg-dark);
  background-color: var(--hwg-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--hwg-space-md);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

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

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

a:hover, a:focus {
  color: color-mix(in srgb, var(--hwg-forest) 80%, black);
  text-decoration: underline;
}

small {
  font-size: 0.875rem;
}

/* Layout Components */
.hwg-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--hwg-space-md);
}

.hwg-split-panel {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .hwg-split-panel {
    flex-direction: row;
  }
  
  .hwg-split-panel__left,
  .hwg-split-panel__right {
    flex: 1;
    min-height: 500px;
  }
  
  .hwg-split-panel__left {
    padding-right: var(--hwg-space-lg);
  }
  
  .hwg-split-panel__right {
    padding-left: var(--hwg-space-lg);
  }
}

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

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

.hwg-section--medium {
  background-color: var(--hwg-bg-medium);
}

.hwg-section--dark {
  background-color: var(--hwg-forest);
  color: var(--hwg-light);
}

/* Header */
.hwg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--hwg-bg-light);
  box-shadow: var(--hwg-shadow-soft);
  padding: var(--hwg-space-sm) 0;
}

.hwg-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hwg-logo {
  height: 40px;
}

.hwg-logo img {
  height: 100%;
}

.hwg-nav {
  display: none;
}

.hwg-nav__list {
  display: flex;
  list-style: none;
  gap: var(--hwg-space-md);
}

.hwg-nav__link {
  font-weight: 500;
  padding: var(--hwg-space-xs) var(--hwg-space-sm);
  border-radius: var(--hwg-radius-sm);
  transition: background-color var(--hwg-transition-fast);
  font-size: 0.9rem;
}

.hwg-nav__link:hover, 
.hwg-nav__link:focus {
  background-color: var(--hwg-bg-medium);
  text-decoration: none;
}

.hwg-nav__link--active {
  font-weight: 700;
  color: var(--hwg-forest);
}

.hwg-mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--hwg-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.hwg-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--hwg-bg-light);
  box-shadow: var(--hwg-shadow-medium);
  transition: right var(--hwg-transition-medium);
  z-index: 200;
  padding: var(--hwg-space-lg);
  overflow-y: auto;
}

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

.hwg-mobile-menu__close {
  position: absolute;
  top: var(--hwg-space-md);
  right: var(--hwg-space-md);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hwg-mobile-menu__list {
  list-style: none;
  margin-top: var(--hwg-space-xl);
}

.hwg-mobile-menu__item {
  margin-bottom: var(--hwg-space-md);
}

.hwg-mobile-menu__link {
  display: block;
  font-size: 1.25rem;
  padding: var(--hwg-space-sm) 0;
  border-bottom: 1px solid var(--hwg-sage);
}

.hwg-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--hwg-transition-medium);
}

.hwg-mobile-menu-overlay.hwg-mobile-menu-overlay--active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .hwg-nav {
    display: block;
  }
  
  .hwg-mobile-menu-toggle {
    display: none;
  }
}

/* Contact Info */
.hwg-contact-info {
  display: flex;
  align-items: center;
  gap: var(--hwg-space-sm);
}

.hwg-contact-info__phone {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--hwg-space-xs);
}

/* Footer */
.hwg-footer {
  background-color: var(--hwg-forest);
  color: var(--hwg-light);
  padding: var(--hwg-space-xl) 0;
}

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

.hwg-footer__logo {
  filter: brightness(0) invert(1);
  height: 40px;
  margin-bottom: var(--hwg-space-md);
}

.hwg-footer__contact {
  margin-bottom: var(--hwg-space-md);
}

.hwg-footer__address {
  margin-bottom: var(--hwg-space-sm);
}

.hwg-footer__phone {
  display: block;
  color: var(--hwg-light);
  margin-bottom: var(--hwg-space-sm);
}

.hwg-footer__nav-title {
  font-weight: 700;
  margin-bottom: var(--hwg-space-md);
}

.hwg-footer__nav-list {
  list-style: none;
}

.hwg-footer__nav-item {
  margin-bottom: var(--hwg-space-xs);
}

.hwg-footer__nav-link {
  color: var(--hwg-light);
  opacity: 0.8;
  transition: opacity var(--hwg-transition-fast);
}

.hwg-footer__nav-link:hover,
.hwg-footer__nav-link:focus {
  opacity: 1;
  color: var(--hwg-light);
}

.hwg-footer__legal {
  margin-top: var(--hwg-space-lg);
  padding-top: var(--hwg-space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

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

/* Buttons */
.hwg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--hwg-space-sm) var(--hwg-space-md);
  border-radius: var(--hwg-radius-md);
  font-weight: 500;
  transition: all var(--hwg-transition-fast);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.hwg-btn:hover, .hwg-btn:focus {
  text-decoration: none;
}

.hwg-btn--primary {
  background-color: var(--hwg-forest);
  color: var(--hwg-light);
}

.hwg-btn--primary:hover, .hwg-btn--primary:focus {
  background-color: color-mix(in srgb, var(--hwg-forest) 80%, black);
  color: var(--hwg-light);
}

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

.hwg-btn--secondary:hover, .hwg-btn--secondary:focus {
  background-color: color-mix(in srgb, var(--hwg-sage) 80%, black);
  color: var(--hwg-dark);
}

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

.hwg-btn--outline:hover, .hwg-btn--outline:focus {
  background-color: var(--hwg-forest);
  color: var(--hwg-light);
}

.hwg-btn--light {
  background-color: var(--hwg-light);
  color: var(--hwg-forest);
}

.hwg-btn--light:hover, .hwg-btn--light:focus {
  background-color: var(--hwg-bg-medium);
  color: var(--hwg-forest);
}

.hwg-btn--block {
  display: block;
  width: 100%;
}

.hwg-btn--icon {
  display: inline-flex;
  align-items: center;
  gap: var(--hwg-space-xs);
}

/* Forms */
.hwg-form-group {
  margin-bottom: var(--hwg-space-md);
}

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

.hwg-form-control {
  width: 100%;
  padding: var(--hwg-space-sm);
  border: 1px solid var(--hwg-sage);
  border-radius: var(--hwg-radius-sm);
  font-family: var(--hwg-font-main);
  font-size: 1rem;
  transition: border-color var(--hwg-transition-fast);
}

.hwg-form-control:focus {
  outline: none;
  border-color: var(--hwg-forest);
  box-shadow: 0 0 0 3px rgba(44, 85, 69, 0.2);
}

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

.hwg-form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--hwg-space-xs);
  margin-bottom: var(--hwg-space-sm);
}

.hwg-form-check-input {
  margin-top: 0.25rem;
}

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

/* Range Slider */
.hwg-range-slider {
  width: 100%;
  margin-bottom: var(--hwg-space-md);
}

.hwg-range-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--hwg-space-xs);
}

.hwg-range-slider__label {
  font-weight: 500;
}

.hwg-range-slider__value {
  font-weight: 700;
  color: var(--hwg-forest);
}

.hwg-range-slider__input {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: var(--hwg-bg-medium);
  outline: none;
}

.hwg-range-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--hwg-forest);
  cursor: pointer;
}

.hwg-range-slider__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--hwg-forest);
  cursor: pointer;
  border: none;
}

/* Cards */
.hwg-card {
  background-color: var(--hwg-bg-light);
  border-radius: var(--hwg-radius-md);
  overflow: hidden;
  box-shadow: var(--hwg-shadow-soft);
  transition: transform var(--hwg-transition-medium), box-shadow var(--hwg-transition-medium);
}

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

.hwg-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hwg-card__content {
  padding: var(--hwg-space-md);
}

.hwg-card__title {
  margin-bottom: var(--hwg-space-sm);
}

.hwg-card__text {
  margin-bottom: var(--hwg-space-md);
}

/* Service Cards */
.hwg-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hwg-space-md);
}

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

@media (min-width: 992px) {
  .hwg-service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hwg-service-card {
  background-color: var(--hwg-bg-light);
  border-radius: var(--hwg-radius-md);
  padding: var(--hwg-space-md);
  box-shadow: var(--hwg-shadow-soft);
  transition: transform var(--hwg-transition-medium), box-shadow var(--hwg-transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid var(--hwg-forest);
}

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

.hwg-service-card__icon {
  font-size: 2.5rem;
  color: var(--hwg-forest);
  margin-bottom: var(--hwg-space-sm);
}

.hwg-service-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--hwg-space-sm);
}

.hwg-service-card__text {
  font-size: 0.875rem;
  margin-bottom: var(--hwg-space-md);
  flex-grow: 1;
}

/* Hero Sections */
.hwg-hero {
  position: relative;
  padding: var(--hwg-space-xl) 0;
  overflow: hidden;
}

.hwg-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 0.2;
}

.hwg-hero__content {
  max-width: 600px;
}

.hwg-hero__title {
  font-size: 2.5rem;
  margin-bottom: var(--hwg-space-md);
}

.hwg-hero__text {
  font-size: 1.125rem;
  margin-bottom: var(--hwg-space-lg);
}

.hwg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hwg-space-sm);
}

/* Split Screen Hero */
.hwg-split-hero {
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.hwg-split-hero__content {
  padding: var(--hwg-space-xl) 0;
}

.hwg-split-hero__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .hwg-split-hero {
    flex-direction: row;
    align-items: stretch;
  }
  
  .hwg-split-hero__content,
  .hwg-split-hero__image-container {
    flex: 1;
  }
  
  .hwg-split-hero__content {
    padding: var(--hwg-space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hwg-split-hero__image-container {
    position: relative;
  }
  
  .hwg-split-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Features */
.hwg-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hwg-space-lg);
}

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

@media (min-width: 992px) {
  .hwg-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hwg-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hwg-feature__icon {
  font-size: 2.5rem;
  color: var(--hwg-forest);
  margin-bottom: var(--hwg-space-sm);
}

.hwg-feature__title {
  font-size: 1.25rem;
  margin-bottom: var(--hwg-space-sm);
}

.hwg-feature__text {
  font-size: 0.875rem;
}

/* FAQ */
.hwg-faq {
  margin-bottom: var(--hwg-space-lg);
}

.hwg-faq__item {
  border-bottom: 1px solid var(--hwg-sage);
  margin-bottom: var(--hwg-space-sm);
}

.hwg-faq__question {
  font-weight: 700;
  padding: var(--hwg-space-md) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hwg-faq__question::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform var(--hwg-transition-fast);
}

.hwg-faq__question.hwg-faq__question--active::after {
  transform: rotate(45deg);
}

.hwg-faq__answer {
  padding-bottom: var(--hwg-space-md);
  display: none;
}

.hwg-faq__answer.hwg-faq__answer--active {
  display: block;
}

/* Process Steps */
.hwg-process {
  counter-reset: process-counter;
}

.hwg-process__step {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: var(--hwg-space-lg);
}

.hwg-process__step::before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--hwg-forest);
  color: var(--hwg-light);
  border-radius: var(--hwg-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hwg-process__title {
  font-size: 1.25rem;
  margin-bottom: var(--hwg-space-sm);
}

/* Tables */
.hwg-table-container {
  overflow-x: auto;
  margin-bottom: var(--hwg-space-lg);
}

.hwg-table {
  width: 100%;
  border-collapse: collapse;
}

.hwg-table th,
.hwg-table td {
  padding: var(--hwg-space-sm);
  text-align: left;
  border-bottom: 1px solid var(--hwg-sage);
}

.hwg-table th {
  background-color: var(--hwg-bg-medium);
  font-weight: 700;
}

.hwg-table tr:hover {
  background-color: rgba(168, 198, 173, 0.1);
}

/* Modals */
.hwg-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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(--hwg-transition-medium);
}

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

.hwg-modal {
  background-color: var(--hwg-bg-light);
  border-radius: var(--hwg-radius-md);
  box-shadow: var(--hwg-shadow-medium);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--hwg-transition-medium), opacity var(--hwg-transition-medium);
}

.hwg-modal-overlay--active .hwg-modal {
  transform: translateY(0);
  opacity: 1;
}

.hwg-modal__header {
  padding: var(--hwg-space-md);
  border-bottom: 1px solid var(--hwg-sage);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hwg-modal__title {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.hwg-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--hwg-dark);
}

.hwg-modal__body {
  padding: var(--hwg-space-md);
}

.hwg-modal__footer {
  padding: var(--hwg-space-md);
  border-top: 1px solid var(--hwg-sage);
  display: flex;
  justify-content: flex-end;
  gap: var(--hwg-space-sm);
}

/* Cookie Consent */
.hwg-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--hwg-bg-light);
  box-shadow: var(--hwg-shadow-medium);
  padding: var(--hwg-space-md);
  z-index: 900;
  transform: translateY(100%);
  transition: transform var(--hwg-transition-medium);
}

.hwg-cookie-banner.hwg-cookie-banner--active {
  transform: translateY(0);
}

.hwg-cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: var(--hwg-space-md);
}

.hwg-cookie-banner__text {
  margin-bottom: 0;
}

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

@media (min-width: 768px) {
  .hwg-cookie-banner__content {
    flex-direction: row;
    align-items: center;
  }
  
  .hwg-cookie-banner__text {
    flex: 1;
  }
}

.hwg-cookie-settings {
  max-width: 600px;
  width: 100%;
}

.hwg-cookie-category {
  margin-bottom: var(--hwg-space-md);
  padding-bottom: var(--hwg-space-md);
  border-bottom: 1px solid var(--hwg-sage);
}

.hwg-cookie-category:last-child {
  border-bottom: none;
}

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

.hwg-cookie-category__title {
  margin-bottom: 0;
  font-size: 1.125rem;
}

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

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

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

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

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

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

.hwg-cookie-category__toggle-input:disabled + .hwg-cookie-category__toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Article */
.hwg-article {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--hwg-space-xl) var(--hwg-space-md);
}

.hwg-article__header {
  margin-bottom: var(--hwg-space-lg);
}

.hwg-article__title {
  font-size: 2.5rem;
  margin-bottom: var(--hwg-space-sm);
}

.hwg-article__meta {
  color: var(--hwg-dark);
  opacity: 0.7;
  margin-bottom: var(--hwg-space-md);
}

.hwg-article__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--hwg-radius-md);
  margin-bottom: var(--hwg-space-lg);
}

.hwg-article__content h2 {
  margin-top: var(--hwg-space-lg);
  margin-bottom: var(--hwg-space-md);
}

.hwg-article__content h3 {
  margin-top: var(--hwg-space-md);
  margin-bottom: var(--hwg-space-sm);
}

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

.hwg-article__content ul,
.hwg-article__content ol {
  margin-bottom: var(--hwg-space-md);
  padding-left: var(--hwg-space-lg);
}

.hwg-article__content li {
  margin-bottom: var(--hwg-space-xs);
}

/* Calculator */
.hwg-calculator {
  background-color: var(--hwg-bg-medium);
  border-radius: var(--hwg-radius-md);
  padding: var(--hwg-space-lg);
  margin-bottom: var(--hwg-space-xl);
}

.hwg-calculator__title {
  margin-bottom: var(--hwg-space-md);
}

.hwg-calculator__description {
  margin-bottom: var(--hwg-space-lg);
}

.hwg-calculator__controls {
  margin-bottom: var(--hwg-space-lg);
}

.hwg-calculator__results {
  background-color: var(--hwg-bg-light);
  border-radius: var(--hwg-radius-md);
  padding: var(--hwg-space-md);
  margin-bottom: var(--hwg-space-md);
}

.hwg-calculator__result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--hwg-space-sm);
  padding-bottom: var(--hwg-space-sm);
  border-bottom: 1px solid var(--hwg-sage);
}

.hwg-calculator__result-row:last-child {
  border-bottom: none;
}

.hwg-calculator__result-label {
  font-weight: 500;
}

.hwg-calculator__result-value {
  font-weight: 700;
  color: var(--hwg-forest);
}

.hwg-calculator__disclaimer {
  font-size: 0.875rem;
  color: var(--hwg-dark);
  opacity: 0.7;
  margin-top: var(--hwg-space-md);
  padding-top: var(--hwg-space-md);
  border-top: 1px solid var(--hwg-sage);
}

.hwg-calculator__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--hwg-space-md);
}

/* Contact Page */
.hwg-contact-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hwg-space-lg);
}

@media (min-width: 992px) {
  .hwg-contact-page {
    grid-template-columns: 1fr 1fr;
  }
}

.hwg-contact-info-block {
  margin-bottom: var(--hwg-space-lg);
}

.hwg-contact-info-block__title {
  margin-bottom: var(--hwg-space-md);
}

.hwg-contact-info-block__item {
  display: flex;
  align-items: flex-start;
  gap: var(--hwg-space-sm);
  margin-bottom: var(--hwg-space-md);
}

.hwg-contact-info-block__icon {
  font-size: 1.5rem;
  color: var(--hwg-forest);
}

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

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

/* Utilities */
.hwg-text-center {
  text-align: center;
}

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

.hwg-mb-xs {
  margin-bottom: var(--hwg-space-xs);
}

.hwg-mb-sm {
  margin-bottom: var(--hwg-space-sm);
}

.hwg-mb-md {
  margin-bottom: var(--hwg-space-md);
}

.hwg-mb-lg {
  margin-bottom: var(--hwg-space-lg);
}

.hwg-mb-xl {
  margin-bottom: var(--hwg-space-xl);
}

.hwg-mt-xs {
  margin-top: var(--hwg-space-xs);
}

.hwg-mt-sm {
  margin-top: var(--hwg-space-sm);
}

.hwg-mt-md {
  margin-top: var(--hwg-space-md);
}

.hwg-mt-lg {
  margin-top: var(--hwg-space-lg);
}

.hwg-mt-xl {
  margin-top: var(--hwg-space-xl);
}

.hwg-py-xs {
  padding-top: var(--hwg-space-xs);
  padding-bottom: var(--hwg-space-xs);
}

.hwg-py-sm {
  padding-top: var(--hwg-space-sm);
  padding-bottom: var(--hwg-space-sm);
}

.hwg-py-md {
  padding-top: var(--hwg-space-md);
  padding-bottom: var(--hwg-space-md);
}

.hwg-py-lg {
  padding-top: var(--hwg-space-lg);
  padding-bottom: var(--hwg-space-lg);
}

.hwg-py-xl {
  padding-top: var(--hwg-space-xl);
  padding-bottom: var(--hwg-space-xl);
}

/* International Telephone Input Styles */
.iti {
  width: 100%;
}

/* Accessibility */
.hwg-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(44, 85, 69, 0.3);
  outline-offset: 2px;
}

/* Skip to content */
.hwg-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--hwg-forest);
  color: var(--hwg-light);
  padding: 8px;
  z-index: 1001;
  transition: top 0.3s;
}

.hwg-skip-link:focus {
  top: 0;
}

/* Print Styles */
@media print {
  .hwg-header,
  .hwg-footer,
  .hwg-cookie-banner,
  .hwg-btn {
    display: none !important;
  }
  
  body {
    color: black;
    background: white;
  }
  
  .hwg-article {
    max-width: 100%;
    padding: 0;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}