/* CSS Variables */
:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #F59F0A;
  --secondary-foreground: #111827;
  --accent: #2463EB;
  --accent-foreground: #FFFFFF;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #000000;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Open Sans', sans-serif;
  --radius: 0.75rem;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  overflow-wrap: break-word;
}

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

/* Utility Classes */
.hidden {
  display: none !important;
}

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

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

.text-muted {
  color: var(--muted-foreground);
}

.text-lg {
  font-size: 1.125rem;
}

.font-semibold {
  font-weight: 600;
}

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

.text-sm {
  font-size: 0.875rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

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

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
}

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

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

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

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

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.success-message {
  background: var(--muted);
  border: 4px solid var(--primary);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

.success-message h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.success-message p {
  margin: 0;
  color: var(--muted-foreground);
}

/* Icon Styles */
.icon-box {
  width: 60px;
  height: 60px;
  background: var(--muted);
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

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

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

.avatar-icon {
  width: 80px;
  height: 80px;
}

/* Header & Navigation */
.header {
  background: var(--background);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

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

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

.hydroloktk_mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 2px solid var(--border);
}

.hydroloktk_mobile-menu a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}

.hydroloktk_mobile-menu a:hover,
.hydroloktk_mobile-menu a.active {
  color: var(--primary);
}

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

/* Hero Section */
.hero {
  background: var(--primary);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.25rem;
  margin: 0 0 2rem 0;
  .9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 4px solid #fff;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
}

/* Section Styles */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: var(--muted);
}

.page-header {
  background: var(--muted);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.page-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin: 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.section-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Partner Logos */
.partner-logos {
  text-align: center;
}

.partner-logos h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
  color: var(--primary);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.partner-item {
  text-align: center;
}

.partner-item p {
  margin: 0.5rem 0 0 0;
  font-weight: 500;
  color: var(--muted-foreground);
}

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

/* Newsletter */
.newsletter {
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

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

.newsletter-form {
  margin-top: 2rem;
}

.newsletter-signup {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .newsletter-signup {
    flex-direction: column;
  }
}

/* About Preview */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.about-text p {
  margin: 0 0 1rem 0;
  color: var(--muted-foreground);
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 4px solid var(--primary);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Feature Cards */
.feature-card,
.benefit-card,
.principle-card,
.achievement-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1.5rem;
  border: 4px solid var(--primary);
}

.feature-card h3,
.benefit-card h3,
.principle-card h3,
.achievement-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.feature-card p,
.benefit-card p,
.principle-card p,
.achievement-card p {
  margin: 0;
  color: var(--muted-foreground);
}

/* Services Accordion */
.services-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--card);
  border: 4px solid var(--primary);
  margin-bottom: 1rem;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background: var(--muted);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-title h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

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

.accordion-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.accordion-content li {
  margin: 0.5rem 0;
  color: var(--muted-foreground);
}

/* Team Section */
.team-member {
  text-align: center;
  background: var(--card);
  padding: 1.5rem;
  border: 4px solid var(--primary);
}

.member-avatar {
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.member-role {
  font-weight: 500;
  color: var(--secondary);
  margin: 0 0 1rem 0;
}

.team-member p {
  margin: 0;
  color: var(--muted-foreground);
}

/* Testimonial */
.testimonial-section {
  text-align: center;
}

.testimonial-quote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-style: italic;
}

.testimonial-quote p {
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

.testimonial-quote cite {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-style: normal;
  font-weight: 500;
}

/* Contact Page */
.contact-info-bar {
  background: var(--muted);
  padding: 3rem 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.contact-info-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.contact-info-text p {
  margin: 0;
  color: var(--muted-foreground);
}

.contact-info-text a {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Contact Form */
.hydroloktk_contact-form-section {
  padding: 5rem 0;
}

.hydroloktk_contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.hydroloktk_contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hydroloktk_contact-form-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.hydroloktk_contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L2 4h8L6 8z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact Options */
.contact-option-card {
  background: var(--card);
  padding: 1.5rem;
  border: 4px solid var(--primary);
  text-align: center;
}

.contact-option-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.contact-option-card p {
  margin: 0 0 0.5rem 0;
  color: var(--muted-foreground);
}

.contact-option-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* Company Details */
.company-details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.company-details-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
  color: var(--primary);
}

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

.company-info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.company-info-item p {
  margin: 0;
  color: var(--muted-foreground);
}

.company-details-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 4px solid var(--primary);
}

@media (max-width: 768px) {
  .company-details-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .company-info-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.cta-content p {
  font-size: 1.25rem;
  margin: 0 0 2rem 0;
  .9;
}

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

.cta-actions .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cta-actions .btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--muted);
  color: var(--foreground);
  padding: 3rem 0 1rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.footer-column p {
  margin: 0 0 0.5rem 0;
  color: var(--muted-foreground);
}

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

.footer-column li {
  margin: 0 0 0.5rem 0;
}

.footer-column a {
  color: var(--primary);
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Legal Pages */
.legal-page {
  padding: 3rem 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

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

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
  color: var(--primary);
}

.legal-content p {
  margin: 0 0 1rem 0;
  color: var(--muted-foreground);
}

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

.legal-content li {
  margin: 0.5rem 0;
  color: var(--muted-foreground);
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Cookie Table */
.cookie-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--border);
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border);
}

.cookie-table th {
  background: var(--muted);
  font-weight: 600;
  color: var(--primary);
}

.cookie-table td {
  color: var(--muted-foreground);
}

/* Cookie Consent Styles */
.hydroloktk_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 2px solid var(--border);
  z-index: 2000;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.hydroloktk_cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.hydroloktk_cookie-banner-text p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.hydroloktk_cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hydroloktk_cookie-banner-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.hydroloktk_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
}

.hydroloktk_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hydroloktk_cookie-modal-content {
  background: var(--background);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  border: 2px solid var(--border);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hydroloktk_cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border);
}

.hydroloktk_cookie-toggle-row input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.hydroloktk_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hydroloktk_cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .hydroloktk_cookie-banner-actions {
    justify-content: center;
  }
  
  .hydroloktk_cookie-modal-content {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .hydroloktk_cookie-modal-actions {
    justify-content: stretch;
  }
  
  .hydroloktk_cookie-modal-actions button {
    flex: 1;
  }
}

/* Responsive Design */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

/* === BASELINE SAFETY CSS (injected by engine) === */

/* Ensure .hidden works consistently even with ID-specific overrides */
.hidden { display: none !important; }

/* Prevent content overflow breaking layout */
img, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* Ensure container has responsive padding */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Prevent flex/grid children from overflowing */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid fallbacks */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Ensure forms don't break layout */
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
}

/* Success message styling */
.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 0.5rem;
  color: #065f46;
  text-align: center;
}

/* Stacking context for hero sections — prevents z-index:-1 children from going behind the page */
.hero, .hero-section, .page-header, .cta, .cta-section { isolation: isolate; position: relative; }

/* Desktop nav injected by engine — show on desktop, hide on mobile */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu .nav-link { text-decoration: none; color: var(--foreground, #1f2937); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu .nav-link:hover { color: var(--primary, #2563eb); }
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
}

/* Fixed header body padding safety */
body { min-height: 100vh; }

/* Prevent long words breaking layout */
h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; word-wrap: break-word; }

/* === END BASELINE SAFETY CSS === */

/* Cookie banner visibility rules */
#hydroloktk_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#hydroloktk_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#hydroloktk_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
