:root {
  /* Palette - SQL Backup Light Theme */
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #eff6ff;
  --accent: #1e40af;
  --bg-white: #ffffff;
  --bg-gray: #f9fafb;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease-in-out;
  --shadow-soft: 0 10px 40px rgba(59, 130, 246, 0.1);
  --shadow-hover: 0 15px 50px rgba(59, 130, 246, 0.2);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

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

/* Main navigation header and logo */

.main-header {
  background-color: var(--bg-white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.logo img {
  height: 60px;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.02);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
}

.main-nav a:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.main-nav a i {
  margin-right: 6px;
  font-size: 15px;
  opacity: 0.8;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white !important;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover,
.main-nav a.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

/* Hero section with large typography and image */

.hero {
  padding: 80px 0;
  background-color: var(--primary-light);
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  margin-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 54px;
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* General section spacing and background containers */

.section {
  padding: 50px 0;
}

.z-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.z-row:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

/* Reusable card grids and individual card styling */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.card h3 {
  color: var(--primary-dark);
  font-size: 22px;
  margin-bottom: 15px;
}

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

/* Custom list styles with checkmark bullets */

/* Main site footer and bottom links */

.main-footer {
  background-color: var(--primary-light);
  padding: 80px 0 30px;
  margin-top: 80px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  color: var(--text-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-grid h4 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-dark);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.admin-icons-group {
  display: flex;
  gap: 8px;
}

/* Media queries for tablet and mobile layouts */

@media (max-width: 992px) {
  .hero-grid,
  .z-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-text p {
    margin: 0 auto 40px;
  }

  .hero-text h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero,
  .main-footer {
    border-radius: 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav a.btn-primary {
    margin-top: 10px;
    width: 100%;
  }

  .mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
  }
}

/* Image gallery grid layout */

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .gallery-grid {
    gap: 25px;
  }
}

.gallery-item {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--bg-gray);
  background-color: var(--bg-gray);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.02);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* GLightbox plugin overrides for arrows and close buttons */

/* Positioning for GLightbox navigation buttons */

/* Floating cookie consent banner */

.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 90%;
  max-width: 600px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.cookie-banner.show {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  flex-grow: 1;
  line-height: 1.5;
}

.cookie-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.cookie-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

/* Floating scroll-to-top button */

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    border-radius: var(--radius-lg);
    bottom: -200px;
    gap: 15px;
    padding: 20px;
  }

  .cookie-banner.show {
    bottom: 20px;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Testimonials slider and individual review cards */

/* FAQ accordion containers and questions */

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 18px;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--primary-light);
}

/* Contact form and side panel components */

.contact-form,
.contact-side-panel {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus,
.cms-input:focus,
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='url']:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
}

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

.form-alert {
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.form-alert.success {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary);
}

.form-alert.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* General text and spacing utilities */

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

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.btn-icon {
  margin-right: 8px;
}

.btn-white-text {
  color: white !important;
}

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

/* Header and footer image blend modes and icons */

.footer-logo {
  mix-blend-mode: multiply;
  height: 90px;
}

.footer-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-fb-btn {
  padding: 10px 24px;
}

.footer-fb-icon {
  margin-right: 6px;
  font-size: 18px;
}

.footer-contact-list {
  line-height: 2;
  list-style: none;
  padding: 0;
}

.footer-contact-icon {
  width: 20px;
  color: var(--primary-dark);
}

.footer-bottom-container {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Subpage hero spacing and typography */

.hero-subpage {
  padding: 60px 0;
  margin-bottom: 40px;
  border-radius: 0 0 60px 60px;
}

.hero-subpage-tall {
  padding: 80px 0 40px 0;
  margin-bottom: 30px;
  border-radius: 0 0 60px 60px;
}

.hero-subpage-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subpage-title {
  font-size: 48px;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 0;
}

.hero-subpage-title.mb-20 {
  margin-bottom: 20px;
}

/* Homepage specific icons and admin containers */

/* Step cards and intro text formatting */

/* Contact page specific card styling and maps */

.contact-info-title {
  font-size: 26px;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 30px;
}

.contact-info-list a {
  color: inherit;
  transition: var(--transition);
}

.contact-info-list a:hover {
  color: var(--primary) !important;
}

.contact-icon {
  width: 25px;
  color: var(--primary-dark);
}

.contact-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  height: 100%;
}

.form-icon-container {
  margin-top: 30px;
}

.form-icon {
  font-size: 40px;
  color: var(--primary);
  opacity: 0.5;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

@media (max-width: 768px) {
  .footer-bottom-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding-bottom: 20px;
  }

  .admin-icons-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

  .admin-icons-group a {
    font-size: 20px;
  }
}

/* Section backgrounds and abstract patterns */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

/* Interactive brand chip links */

/* Statistics grid and certificates styling */

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Navigation dropdown menus */

/* Typography and spacing for rich blog post content */

.align-center {
  display: block;
  margin: 20px auto;
  float: none;
}

/* Restored utility classes for text and margins */

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

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.btn-icon {
  margin-right: 8px;
}

.btn-white-text {
  color: white !important;
}

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

/* Restored header and footer link formatting */

.footer-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-fb-btn {
  padding: 10px 24px;
}

.footer-fb-icon {
  margin-right: 6px;
  font-size: 18px;
}

.footer-contact-list {
  line-height: 2;
  list-style: none;
  padding: 0;
}

.footer-contact-icon {
  width: 20px;
  color: var(--primary-dark);
}

.footer-bottom-container {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Restored subpage hero typography */

.hero-subpage {
  padding: 60px 0;
  margin-bottom: 40px;
  border-radius: 0 0 60px 60px;
}

.hero-subpage-tall {
  padding: 80px 0 40px 0;
  margin-bottom: 30px;
  border-radius: 0 0 60px 60px;
}

.hero-subpage-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subpage-title {
  font-size: 48px;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 0;
}

.hero-subpage-title.mb-20 {
  margin-bottom: 20px;
}

/* Extracted inline navigation and social icon styles */

.nav-sklep-item {
  margin-left: 10px;
}

.footer-logo-link {
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-social-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-btn {
  padding: 10px 15px !important;
  font-size: 0.9rem !important;
}

.footer-ig-btn {
  background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    ) !important;
  border: none !important;
}

.footer-contact-link {
  color: inherit;
}

/* Extracted homepage hero and card styles */

.hero-home {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
}

.hero-title-text {
  color: #333;
}

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

.hero-btn {
  padding: 15px 30px !important;
  font-size: 1.1rem !important;
}

.hero-image-style {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.section-title-latest {
  color: var(--primary-color);
}

.card-grid-container {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.card-link {
  text-decoration: none;
  color: inherit;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card-image-wrapper {
  height: 200px;
  background: #eee;
  overflow: hidden;
}

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

.card-content-wrapper {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.card-title {
  margin-bottom: 15px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.card-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

.card-read-more-icon {
  margin-left: 5px;
}

/* Blog post specific tags, comments, and meta information */

.hero-subpage-tall {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
}

/* Shop hero and empty placeholder elements */

.sklep-hero-bg {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
}

.sklep-hero-container {
  text-align: center;
  padding: 100px 20px;
}

.sklep-hero-title {
  color: var(--primary-dark);
  font-size: 3rem;
}

.sklep-hero-desc {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.placeholder-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 40px;
  }

  .section {
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-subpage-tall {
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
}

/* Quick mobile overrides for padding and typography */

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 20px 0 !important;
    margin-bottom: 20px !important;
  }

  .section {
    padding: 30px 0 !important;
  }

  .hero-subpage-tall {
    padding: 40px 0 10px 0 !important;
    margin-bottom: 10px !important;
  }

  .hero-subpage-title {
    font-size: 32px !important;
  }
}

/* Paczkomat dropdown autocomplete list styling */

.cms-modal {
  background: #fff;
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 30px;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.paczkomat-result-item {
  transition: background 0.2s;
}

.paczkomat-result-item:last-child {
  border-bottom: none !important;
}

.paczkomat-result-item:hover {
  background: #fcf8e3 !important;
  color: #333 !important;
}

.paczkomat-loading {
  padding: 15px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* Comprehensive layout and margin utilities */

.pos-relative {
  position: relative !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.max-w-400 {
  max-width: 400px !important;
}

.max-w-500 {
  max-width: 500px !important;
}

.max-w-600 {
  max-width: 600px !important;
}

.max-w-800 {
  max-width: 800px !important;
}

/* Margin utility classes */

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Padding utility classes */

.p-0 {
  padding: 0 !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

/* Typography utility classes */

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-lg {
  font-size: 18px !important;
}

.text-bold {
  font-weight: bold !important;
}

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

.text-dark {
  color: #333 !important;
}

.text-muted {
  color: #777 !important;
}

.text-white {
  color: #fff !important;
}

.no-underline {
  text-decoration: none !important;
}

.line-height-15 {
  line-height: 1.5 !important;
}

/* Flexbox layout utilities */

.d-flex {
  display: flex !important;
}

.d-none {
  display: none;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-15 {
  gap: 15px !important;
}

.flex-1 {
  flex: 1 !important;
}

.align-center {
  align-items: center !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

/* Specific status message components */

/* Extended typography, color, and positioning utilities */

.p-5 {
  padding: 5px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-13 {
  font-size: 13px !important;
}

.text-xl {
  font-size: 20px !important;
}

.text-555 {
  color: #555 !important;
}

.text-999 {
  color: #999 !important;
}

.text-red {
  color: red !important;
}

.d-block {
  display: block !important;
}

.radius-5 {
  border-radius: 5px !important;
}

.radius-8 {
  border-radius: 8px !important;
}

.radius-12 {
  border-radius: 12px !important;
}

.border-ddd {
  border: 1px solid #ddd !important;
}

.border-eee {
  border: 1px solid #eee !important;
}

.border-red {
  border: 1px solid red !important;
}

.border-b-eee {
  border-bottom: 1px solid #eee !important;
}

.border-b-2-eee {
  border-bottom: 2px solid #eee !important;
}

.border-t-eee {
  border-top: 1px solid #eee !important;
}

.bg-white {
  background: #fff !important;
}

.bg-light {
  background: #f8f9fa !important;
}

.bg-f1f2f6 {
  background: #f1f2f6 !important;
}

.w-50 {
  width: 50% !important;
}

.btn-filter-active {
  background: #3b82f6 !important;
  color: #fff !important;
  padding: 8px 20px !important;
  font-size: 14px !important;
  border: none !important;
}

.btn-filter-inactive {
  background: #f1f2f6 !important;
  color: #333 !important;
  border: none !important;
  padding: 8px 20px !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

/* Profile modal dialog styling */

/* Refactored blog post buttons and missing containers */

/* Contact page layout grid and mobile breakpoints */

.contact-page-grid {
  display: grid;
  grid-template-columns: 3.5fr 6.5fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 80px;
}

.contact-illustration-img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

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

  .contact-image-wrapper {
    order: 1;
    text-align: center;
  }

  .contact-form-wrapper {
    order: 2;
  }

  .contact-info-list {
    display: inline-block;
    text-align: left;
  }
}

/* Lightbox image overlay and zoom animations */

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

body.no-scroll {
  overflow: hidden !important;
}
/* --- AUTO GENERATED UTILITY CLASSES FROM INLINE STYLES --- */
.u-color-27ae60 {
    color:#27ae60;
}
.u-color-e74c3c {
    color:#e74c3c;
}
.u-padding-100px-0 {
    padding: 100px 0;
}
.u-text-align-center {
    text-align:center;
}
.inline-style-585607826 {
    background:#f9f9f9;
    padding:20px;
    border-radius:8px;
    margin:20px 0;
}
.u-margin-top-0-color-3b82f6 {
    margin-top:0;
    color:#3b82f6;
}
.u-margin-5px-0 {
    margin:5px 0;
}
.u-color-3b82f6 {
    color:#3b82f6;
}
.u-list-style-type-none-padding-left-1659 {
    list-style-type:none;
    padding-left:0;
}
.inline-style-1015758883 {
    padding:8px 0;
    border-bottom:1px solid #eee;
}
.u-font-size-18px-margin-top-15px {
    font-size:18px;
    margin-top:15px;
}
.inline-style-1004990074 {
    background:#f0f9ff;
    border:1px solid #3b82f6;
    padding:20px;
    border-radius:8px;
    margin-top:20px;
    text-align:center;
}
.u-margin-bottom-5px-color-555 {
    margin-bottom:5px;
    color:#555;
}
.inline-style-374856525 {
    font-size: 20px;
    font-weight: bold;
    background: #fff;
    padding: 10px;
    border: 1px dashed #3b82f6;
    display: inline-block;
    margin-bottom: 20px;
    color: #333;
}
.u-font-size-13px-color-666 {
    font-size:13px;
    color:#666;
}
.u-margin-top-20px-color-3b82f6 {
    margin-top:20px;
    color:#3b82f6;
}
.u-text-align-center-margin-top-30px {
    text-align:center;
    margin-top:30px;
}
.inline-style-1436166149 {
    display:inline-block;
    padding:10px 20px;
    background:#3b82f6;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}
.u-color-d4af37-font-weight-bold {
    color:#d4af37;
    font-weight:bold;
}
.u-font-size-16px-margin-0 {
    font-size:16px;
    margin:0;
}
.u-color-d4af37 {
    color:#d4af37;
}
.u-padding-100px-0-text-align-center {
    padding:100px 0;
    text-align:center;
}
.u-font-size-80px-color-27ae60 {
    font-size: 80px;
    color: #27ae60;
}
.u-margin-0-auto-30px {
    margin: 0 auto 30px;
}
.u-align-items-flex-start-gap-40px {
    align-items:flex-start;
    gap:40px;
}
.inline-style-1840992892 {
    color:var(--primary);
}
.inline-style-594155284 {
    font-size:1.2rem;
    color:#555;
    line-height:1.7;
    margin-bottom:30px;
}
.inline-style-430994638 {
    list-style:none;
    padding:0;
    margin:0 0 20px 0;
    font-size:1.05rem;
}
.inline-style-430994638 li {
    position: relative;
    padding-left: 32px;
}
.inline-style-430994638 li i {
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    text-align: center;
}
.u-margin-bottom-10px {
    margin-bottom:10px;
}
.inline-style-848398244 {
    color:var(--success-color);
    margin-right:10px;
}
.u-color-e1b12c-margin-right-10px {
    color:#e1b12c;
    margin-right:10px;
}
.inline-style-653994917 {
    color:var(--primary);
    margin-right:10px;
}
.u-color-20bf6b-margin-right-10px {
    color:#20bf6b;
    margin-right:10px;
}
.u-margin-top-30px-text-align-center {
    margin-top:30px;
    text-align:center;
}
.inline-style-1002950814 {
    padding:15px 30px;
    font-size:1.1rem;
    white-space: nowrap;
    margin-bottom: 25px;
    display:inline-block;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}
.inline-style-502253532 {
    display: block;
    margin-bottom:50px;
    margin-top:-15px;
}
.inline-style-848500649 {
    background:#f8f9fa;
    border:1px solid #eaeaea;
    border-radius:12px;
    padding:35px 20px;
}
.inline-style-1075024849 {
    margin-top:0;
    margin-bottom:20px;
    color:var(--primary);
}
.inline-style-171168369 {
    font-size:0.9rem;
    color:#666;
    margin-bottom:15px;
}
.u-display-flex-gap-15px-flex-wrap-w-1739 {
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}
.inline-style-1410168558 {
    flex:1;
    text-align:center;
    padding:12px;
    font-size:0.95rem;
    min-width:180px;
    background:#fff;
    border-radius:30px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    transition:0.3s;
}
.u-margin-top-80px {
    margin-top: 80px;
}
.inline-style-1790802325 {
    background:#fff;
    border:1px solid #eaeaea;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.03);
}
.u-margin-bottom-25px {
    margin-bottom:25px;
}
.inline-style-1967759741 {
    margin-top:0;
    color:var(--primary);
    font-size:1.4rem;
    margin-bottom:8px;
}
.u-color-d1d5db-margin-right-8px {
    color:#d1d5db;
    margin-right:8px;
}
.inline-style-1069387651 {
    color:#666;
    margin:0;
    font-size:1rem;
    line-height:1.6;
}
.u-max-width-900px {
    max-width: 900px;
}
.inline-style-561085144 {
    height: 600px !important;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.6;
}
.u-max-width-1200px {
    max-width: 1200px !important;
}
.u-flex-wrap-wrap {
    flex-wrap:wrap;
}
.inline-style-1909996739 {
    flex:1;
    min-width:140px;
    padding:10px 15px;
    border:none;
    outline:none;
    background:var(--primary);
    color:#fff;
}
.inline-style-341399388 {
    flex:1;
    min-width:140px;
    padding:10px 15px;
    border:none;
    outline:none;
    background:#f1f2f6;
    color:#333;
}
.inline-style-2007017137 {
    color: var(--primary);
}
.inline-style-1021154376 {
    background:#f8f9fa;
    border:1px solid #eaeaea;
    border-radius:12px;
    padding:20px;
    text-align:center;
}
.inline-style-1765475600 {
    font-size:1.1rem;
    color:#555;
    margin-bottom:10px;
}
.inline-style-162660890 {
    font-size:2rem;
    font-weight:bold;
    color:var(--primary);
}
.inline-style-1571862680 {
    font-size:0.85rem;
    color:#888;
    margin-top:5px;
}
.inline-style-1822450551 {
    margin-top:15px;
    font-size:11px;
    color:#aaa;
}
.inline-style-311942139 {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.inline-style-1900510609 {
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.inline-style-795929793 {
    position: absolute;
    right:20px;
    top:20px;
}
.u-margin-top-15px {
    margin-top: 15px;
}
.u-margin-top-15px-margin-bottom-10p-3748 {
    margin-top: 15px;
    margin-bottom: 10px;
}
.u-margin-15px-0-text-align-center {
    margin:15px 0;
    text-align:center;
}
.inline-style-185708767 {
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:12px;
    color:#555;
}
.inline-style-550596415 {
    margin-right:8px;
    accent-color:var(--primary);
}
.u-z-index-9999999 {
    z-index: 9999999 !important;
}
.u-padding-40px-20px {
    padding: 40px 20px;
}
.inline-style-1191971956 {
    background:var(--primary);
}
.inline-style-597473002 {
    z-index:99999;
    align-items: flex-start;
    padding: 40px 0;
    overflow-y: auto;
}
.inline-style-350925523 {
    max-width: 1000px !important;
    margin: auto;
    min-height: 650px;
    transition: max-width 0.3s ease;
}
.inline-style-2138780786 {
    position: absolute;
    right:20px;
    top:20px;
    z-index:100;
}
.inline-style-894959899 {
    border-bottom:2px dashed #eee;
    padding-bottom:15px;
    font-size:22px;
}
.u-max-height-none-overflow-visible {
    max-height: none;
    overflow: visible;
}
.inline-style-511767495 {
    background:#f0f9ff;
    border:1px solid #cce5ff;
}
.u-padding-8px-15px {
    padding:8px 15px;
}
.inline-style-260275140 {
    flex:1;
    min-width:140px;
    padding:10px 15px;
    border:none;
    outline:none;
    background:var(--primary);
}
.inline-style-331030709 {
    flex:1;
    min-width:140px;
    padding:10px 15px;
    border:none;
    outline:none;
}
.inline-style-163122991 {
    max-height: 550px;
    overflow-y:auto;
    padding-right:5px;
}
.u-padding-right-5px-overflow-visibl-3221 {
    padding-right:5px;
    overflow:visible;
}
.u-border-none-margin-20px-0 {
    border:none;
    margin:20px 0;
}
.u-border-none-outline-none {
    border:none;
    outline:none;
}
.inline-style-1369873927 {
    background-color: var(--primary-light);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.inline-style-1593509347 {
    color: var(--primary-dark);
}
.inline-style-883849410 {
    color: var(--text-dark);
}
.u-display-inline-block {
    display: inline-block;
}
.u-padding-0-overflow-hidden {
    padding: 0;
    overflow: hidden;
}
.inline-style-898574080 {
    height: 220px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-bottom: 1px solid var(--border);
}
.u-width-100-height-100 {
    width:100%;
    height:100%;
}
.u-padding-30px {
    padding: 30px;
}
.u-margin-bottom-30px-line-height-1--4986 {
    margin-bottom: 30px;
    line-height: 1.6;
}
.inline-style-628387555 {
    color: var(--primary);
    border: 1px solid #cce5ff;
    border-radius: 6px;
    background-color: #f0f9ff;
}
.inline-style-996213529 {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 20px;
}
.inline-style-271156172 {
    background: #fff;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 8px;
    color: #2c3e50;
    border: 1px solid #eee;
    margin-top: 15px;
}
.inline-style-784278372 {
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
}
.inline-style-246874609 {
    color: var(--primary-dark);
    font-size: 3rem;
    font-weight: 800;
}
.inline-style-1739190954 {
    max-width: 950px;
    margin: -60px auto 80px;
    position: relative;
    z-index: 10;
}
.inline-style-815846788 {
    background: #fff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}
.u-display-block-min-height-50px {
    display:block;
    min-height:50px;
}
.u-flex-3 {
    flex: 3;
}
.u-color-444 {
    color:#444;
}
.inline-style-585836132 {
    font-family: monospace;
    letter-spacing: 1px;
}
.inline-style-1960814833 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inline-style-1055361675 {
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    text-align:center;
    max-width: 400px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.u-margin-top-0 {
    margin-top:0;
}
.inline-style-903518130 {
    display:inline-block;
    box-sizing:border-box;
}
.u-box-sizing-border-box {
    box-sizing: border-box;
}
.u-padding-12px {
    padding:12px;
}
.u-margin-top-5px-margin-bottom-10px {
    margin-top:-5px;
    margin-bottom:10px;
}
.u-height-160px {
    height: 160px;
}
.u-max-height-80px {
    max-height: 80px;
}
.inline-style-1317077560 {
    padding:12px;
    background:#e8f8f5;
    color:#27ae60;
    border:1px solid #27ae60;
    word-break: break-all;
}
.inline-style-10366639 {
    background:#f9f9f9;
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.inline-style-276479363 {
    height:120px;
    resize:vertical;
    font-size:14px;
}
.u-display-none {
    display:none;
}
.inline-style-18759550 {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.inline-style-937285568 {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
}
.inline-style-1600381393 {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}
.u-color-333 {
    color: #333;
}
.inline-style-398524539 {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}
.inline-style-1337208303 {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}
.inline-style-2087989162 {
    color: var(--primary);
}
.inline-style-2042105915 {
    text-decoration: none;
    margin-top: 10px;
}
.u-max-width-600px-margin-0-auto {
    max-width: 600px;
    margin: 0 auto;
}
.u-gap-10px-flex-wrap-wrap {
    gap: 10px;
    flex-wrap: wrap;
}
.inline-style-1954138259 {
    background: #f0f9ff;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: bold;
    border-radius: 8px;
}
.inline-style-378007339 {
    background: #f1f2f6;
    color: #333;
    border: 2px solid transparent;
    font-weight: bold;
    border-radius: 8px;
}
.inline-style-2033320407 {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}
.inline-style-548126027 {
    color:var(--primary);
    text-decoration:none;
}
.u-font-size-18px {
    font-size: 18px;
}

/* --- AUTO GENERATED CLASSES FROM JS INLINE STYLES --- */
.overflow-hidden {
    overflow: hidden !important;
}
.status-box {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
.status-success {
    background: #e8f8f5;
    color: #27ae60;
    border: 1px solid #27ae60;
}
.status-error {
    background: #fdf0ed;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}
.status-warning {
    background: #fcf8e3;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.status-info {
    background: #f0f9ff;
    color: var(--primary);
    border: 1px solid #cce5ff;
}
.status-error-light {
    background: #fdeded;
    color: #e74c3c;
}
.text-success {
    color: #27ae60 !important;
}
.text-error {
    color: #e74c3c !important;
}
.text-primary {
    color: var(--primary) !important;
}
.border-success {
    border-color: #27ae60 !important;
}
.border-error {
    border-color: #e74c3c !important;
}
.bg-success-light {
    background: #e8f8f5 !important;
}
.bg-error-light {
    background: #fdf0ed !important;
}
.bg-primary {
    background: var(--primary) !important;
}
.bg-inactive {
    background: #f1f2f6 !important;
    color: #333 !important;
}
.u-color-inherit {
    color: inherit;
}
.u-cursor-pointer {
    cursor:pointer;
}
.u-list-style-none-margin-15px-0-0 {
    list-style:none;
    margin:15px 0 0;
}
.u-padding-5px-15px-display-inline-b-6133 {
    padding:5px 15px;
    display:inline-block;
}
.u-align-items-flex-start {
    align-items:flex-start;
}
.inline-style-1491807310 {
    background:${statusColor};
    padding:3px 8px;
    border-radius:4px;
}
.u-color-e74c3c {
    color:#e74c3c;
}
.inline-style-952005281 {
    background:#fff0f0;
    border:none;
    color:#e74c3c;
    cursor:pointer;
    font-size:13px;
    padding:4px 8px;
    border-radius:4px;
    font-weight:bold;
    transition:0.2s;
    margin-top:8px;
    display:inline-block;
}
.inline-style-111352624 {
    flex-wrap:wrap;
    gap:10px;
    align-items:flex-start;
}
.u-font-size-16px {
    font-size:16px;
}
.u-margin-bottom-2px {
    margin-bottom:2px;
}
.inline-style-1786524637 {
    background:#f0f9ff;
    border: 1px dashed var(--primary);
    padding:10px;
    border-radius:6px;
    font-size:16px;
    font-family:monospace;
    font-weight:bold;
    color:var(--primary);
    text-align:center;
    letter-spacing:1px;
    margin-bottom:10px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.inline-style-1786960040 {
    color:var(--primary);
    cursor:pointer;
    margin-left:10px;
    font-size:18px;
    transition:0.2s;
}
.inline-style-333791400 {
    display:block;
    margin-top:8px;
    font-size:11px;
    font-weight:normal;
    text-transform:none;
}
.u-margin-top-15px {
    margin-top:15px;
}
.u-display-flex-flex-wrap-wrap-gap-3-1743 {
    display:flex;
    flex-wrap:wrap;
    gap:35px;
}
.inline-style-804995211 {
    flex:1;
    min-width:250px;
    max-width:320px;
}
.inline-style-166159089 {
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:12px;
    display:${imgDisplay};
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
}
.inline-style-74385621 {
    flex:1.2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-width:280px;
}
.inline-style-766638235 {
    color:var(--primary);
    font-weight:800;
    margin-bottom:12px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}
.inline-style-1576982079 {
    line-height:1.6;
    color:#555;
    font-size:15px;
    margin-bottom:15px;
}
.inline-style-1128876283 {
    margin-bottom:25px;
    border-top:1px dashed #eee;
    padding-top:15px;
}
.inline-style-1987136917 {
    margin-top:0;
    color:var(--primary);
    font-size:14px;
    margin-bottom:8px;
}
.inline-style-793086653 {
    line-height:1.5;
    color:#444;
    font-size:13px;
    max-height:150px;
    overflow-y:auto;
    padding-right:10px;
}
.inline-style-1398391913 {
    background:#f8f9fa;
    border-radius:12px;
    padding:20px;
    border:1px solid #eaeaea;
}
.inline-style-308133626 {
    font-size:32px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:10px;
}
.inline-style-1657627987 {
    padding:14px 20px;
    font-size:16px;
    width:100%;
    border-radius:8px;
}
.inline-style-1416853271 {
    font-size:12px;
    color:#888;
    margin-top:15px;
    text-align:center;
    display:flex;
    justify-content:center;
    gap:15px;
}
.u-color-eab308 {
    color:#eab308;
}
.inline-style-1840992892 {
    color:var(--primary);
}
.inline-style-341894601 {
    font-size:40px;
    color:var(--primary);
    margin-bottom:15px;
}
.inline-style-1016371307 {
    margin-top:0;
    color:var(--primary);
}
.u-margin-bottom-20px-font-size-16px {
    margin-bottom:20px;
    font-size:16px;
}
.u-width-100 {
    width:100%;
}
.u-text-align-center-padding-40px {
    text-align:center;
    padding:40px;
}
.inline-style-340955238 {
    text-align:center;
    padding: 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    min-height:350px;
}
.u-color-ddd-margin-bottom-20px {
    color:#ddd;
    margin-bottom:20px;
}
.inline-style-1711392161 {
    color:#777;
    font-size:18px;
    margin-bottom: 25px;
}
.u-max-width-250px-margin-top-0 {
    max-width: 250px;
    margin-top: 0;
}
.inline-style-565335647 {
    width:100%;
    border-collapse:collapse;
    text-align:left;
    font-size:14px;
}
.inline-style-298517420 {
    background:#f8f9fa;
    border-bottom:2px solid #eee;
}
.u-padding-12px {
    padding:12px;
}
.u-padding-12px-text-align-center {
    padding:12px;
    text-align:center;
}
.u-padding-12px-text-align-right {
    padding:12px;
    text-align:right;
}
.u-padding-12px-width-50px {
    padding:12px;
    width:50px;
}
.inline-style-1129831077 {
    width:60px;
    padding:6px;
    border-radius:6px;
    border:1px solid #ddd;
    text-align:center;
    font-weight:bold;
    color:#2c3e50;
}
.u-border-bottom-1px-solid-eee {
    border-bottom:1px solid #eee;
}
.inline-style-1036836866 {
    padding:12px;
    display:flex;
    align-items:center;
    gap:15px;
}
.inline-style-147529080 {
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:6px;
}
.inline-style-578085971 {
    font-weight:bold;
    color:#2c3e50;
    font-size:15px;
}
.inline-style-2023358825 {
    padding:12px;
    color:var(--primary);
    font-weight:bold;
}
.inline-style-349108106 {
    padding:12px;
    font-weight:bold;
    color:#2c3e50;
    text-align:right;
}
.inline-style-1472162774 {
    background:#fff0f0;
    border:none;
    color:#e74c3c;
    cursor:pointer;
    font-size:16px;
    width:32px;
    height:32px;
    border-radius:6px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:0.2s;
}
.inline-style-1004535683 {
    display:flex;
    flex-direction:column;
    min-height:100%;
}
.u-flex-grow-1 {
    flex-grow:1;
}
.inline-style-1258144385 {
    margin-top:20px;
    padding-top:20px;
    border-top:2px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.inline-style-2034283733 {
    font-size:18px;
    font-weight:bold;
    color:#555;
}
.inline-style-572594548 {
    color:var(--primary);
    font-size:24px;
    font-weight:900;
}
.u-text-align-right-margin-top-25px {
    text-align:right;
    margin-top:25px;
}
.u-text-align-center-padding-20px-0 {
    text-align:center;
    padding: 20px 0;
}
.inline-style-915291803 {
    color:var(--primary);
    margin-bottom:15px;
}
.u-color-555-margin-bottom-25px {
    color:#555;
    margin-bottom:25px;
}
.inline-style-912136821 {
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:400px;
    margin:0 auto;
}
.u-padding-15px-font-size-16px {
    padding:15px;
    font-size:16px;
}
.inline-style-336684786 {
    background:transparent;
    color:#999;
    border:none;
    cursor:pointer;
    margin-top:10px;
    font-weight:bold;
}
.u-padding-20px-10px {
    padding: 20px 10px;
}
.inline-style-702390605 {
    display:none;
    color:#e74c3c;
    font-weight:bold;
    margin-bottom:15px;
    background:#fdeded;
    padding:10px;
    border-radius:6px;
}
.u-width-100-margin-top-10px {
    width:100%;
    margin-top:10px;
}
.u-text-align-center-margin-top-20px {
    text-align:center;
    margin-top:20px;
}
.inline-style-324478310 {
    background:transparent;
    color:#999;
    border:none;
    cursor:pointer;
    font-weight:bold;
}
.inline-style-2046540706 {
    display:flex;
    gap:10px;
    margin-bottom:10px;
}
.u-flex-1 {
    flex:1;
}
.u-margin-15px-0-text-align-center {
    margin:15px 0;
    text-align:center;
}
.inline-style-185708767 {
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:12px;
    color:#555;
}
.inline-style-550596415 {
    margin-right:8px;
    accent-color:var(--primary);
}
.inline-style-630568131 {
    display:none;
    font-weight:bold;
    margin-bottom:15px;
    padding:10px;
    border-radius:6px;
}
.u-display-flex-flex-wrap-wrap-gap-3-1742 {
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}
.u-flex-2-min-width-300px {
    flex: 2;
    min-width:300px;
}
.inline-style-1909400196 {
    margin-top:0;
    color:var(--primary);
    font-size:18px;
}
.u-margin-bottom-10px {
    margin-bottom:10px;
}
.inline-style-258308964 {
    margin: 15px 0;
    background:var(--primary-light);
    padding:15px;
    border:1px solid var(--primary);
    border-radius:8px;
}
.inline-style-1645080994 {
    display:flex;
    align-items:flex-start;
    cursor:pointer;
    font-size:13px;
    color:#555;
    line-height:1.5;
}
.inline-style-15333302 {
    margin-top:2px;
    margin-right:10px;
    width:18px;
    height:18px;
    accent-color:var(--primary);
}
.inline-style-154752593 {
    color:var(--primary);
    text-decoration:underline;
    font-weight:bold;
}
.inline-style-1620983983 {
    margin: 15px 0;
    background:#fafafa;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:15px;
}
.inline-style-864097419 {
    font-size:13px;
    color:#555;
    line-height:1.5;
}
.inline-style-1847526355 {
    display:none;
    color:#e74c3c;
    font-weight:bold;
    margin:10px 0;
}
.inline-style-1638779111 {
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:20px;
}
.inline-style-1981210316 {
    flex: 1;
    min-width:250px;
    align-self:center;
}
.inline-style-302672712 {
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border:1px solid #f1f2f6;
}
.inline-style-1644296723 {
    margin-top:0;
    border-bottom:2px dashed #eee;
    padding-bottom:15px;
    font-size:18px;
    color:#2c3e50;
}
.u-margin-bottom-20px-padding-top-10-2154 {
    margin-bottom: 20px;
    padding-top:10px;
}
.inline-style-1036895557 {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
    font-size:15px;
}
.u-color-555 {
    color:#555;
}
.inline-style-553083727 {
    color:#2c3e50;
    margin-left:5px;
    background:#f1f2f6;
    padding:2px 6px;
    border-radius:4px;
    font-size:12px;
}
.u-color-2c3e50 {
    color:#2c3e50;
}
.inline-style-1186229790 {
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:22px;
    font-weight:900;
    color:var(--primary);
    border-top:2px dashed #eee;
    padding-top:20px;
}
.u-color-2c3e50-font-size-18px {
    color:#2c3e50;
    font-size:18px;
}
.inline-style-1761506979 {
    background:#f1f2f6;
    color:#555;
    flex:1;
    padding:15px;
    font-weight:bold;
    font-size:18px;
    border-radius:8px;
    border:none;
    cursor:pointer;
    transition:0.2s;
    height:54px;
}
.inline-style-135239762 {
    flex:2;
    margin-top:0 !important;
    background:var(--primary);
    height:54px;
}
.inline-style-1011623672 {
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:6px;
    border:1px solid #ddd;
}
.u-padding-20px-text-align-center {
    padding:20px;
    text-align:center;
}
.inline-style-1909684016 {
    background:' +
                        badgeBg +
                        ';
    color:#fff;
    padding:3px 8px;
    border-radius:4px;
    font-size:12px;
}
.inline-style-1886455846 {
    padding:12px;
    display:flex;
    gap:8px;
    justify-content:flex-end;
    align-items:center;
}
.inline-style-276416953 {
    background:#fef5e7;
    border:none;
    color:#f39c12;
    cursor:pointer;
    font-size:16px;
    width:36px;
    height:36px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:0.2s;
    flex-shrink:0;
}
.inline-style-971833084 {
    padding:20px;
    text-align:center;
    color:red;
}
.u-color-27ae60-font-weight-bold {
    color:#27ae60;
    font-weight:bold;
}
.u-color-95a5a6 {
    color:#95a5a6;
}
.u-color-7f8c8d-font-weight-bold {
    color:#7f8c8d;
    font-weight:bold;
}
.u-color-aaa {
    color:#aaa;
}
.inline-style-1988339927 {
    margin-top:8px;
    padding:6px;
    background:#f0f9ff;
    border-left:3px solid var(--primary);
    font-size:12px;
    color:#555;
    border-radius:3px;
}
.inline-style-791758094 {
    background:#fff0f0;
    border:none;
    color:#e74c3c;
    cursor:pointer;
    font-size:13px;
    padding:6px 12px;
    border-radius:4px;
    font-weight:bold;
    transition:0.2s;
    margin-right:5px;
}
.inline-style-1474479679 {
    font-weight:bold;
    color:var(--primary);
    margin-bottom:4px;
}
.u-display-flex-align-items-center {
    display:flex;
    align-items:center;
}
.inline-style-582994873 {
    color:#888;
    margin-right:8px;
    font-weight:bold;
}
.inline-style-878971359 {
    font-family:monospace;
    background:#f9f9f9;
    padding:4px 8px;
    border-radius:4px;
    border:1px solid #ddd;
    display:inline-block;
}
.inline-style-1814458733 {
    color:var(--primary);
    cursor:pointer;
    margin-left:8px;
    font-size:16px;
    transition:0.2s;
}
.u-margin-bottom-4px {
    margin-bottom:4px;
}
.inline-style-1404778292 {
    padding:12px;
    width:1%;
    white-space:nowrap;
}
.inline-style-1264366974 {
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
}
.inline-style-1211467214 {
    background:transparent;
    border:none;
    color:var(--primary);
    cursor:pointer;
    font-size:13px;
    font-weight:bold;
    padding:0;
}
.u-background-e8f5e9-color-2e7d32 {
    background:#e8f5e9;
    color:#2e7d32;
}
.inline-style-1323893160 {
    font-size:1.2em;
    display:block;
    margin-top:8px;
    color:var(--primary);
}

.hero-action-area { display: inline-block; margin-top: 25px; }
.hero-downloads-row { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-downloads-row .btn-primary { margin: 0; padding: 12px 20px !important; font-size: 0.95rem !important; display: inline-flex; align-items: center; justify-content: center; }
.btn-files-backup { background-color: #2c3e50 !important; border-color: #2c3e50 !important; color: #ffffff !important; box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3) !important; }
.btn-files-backup:hover { background-color: #1a252f !important; border-color: #1a252f !important; box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4) !important; }
.hero-premium-row { margin-top: 15px; text-align: center; }
.btn-premium-outline { 
    margin: 0; padding: 10px 25px; font-size: 0.95rem; 
    background-color: transparent !important; 
    border: 2px solid #34495e !important; 
    color: #34495e !important; 
    display: inline-flex; align-items: center; justify-content: center; 
    transition: all 0.3s; font-weight: 600; text-decoration: none; border-radius: 6px;
}
.btn-premium-outline:hover { background-color: #34495e !important; color: #ffffff !important; }

/* Language Switcher */
.public-lang-switcher {
    display: inline-flex;
    background: var(--bg-white, #fff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 20px;
    padding: 4px;
    gap: 4px;
    margin: 0 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.public-lang-switcher a {
    color: var(--text-muted, #64748b);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.public-lang-switcher a:hover {
    color: var(--primary, #3b82f6);
    background: var(--primary-light, #eff6ff);
}
.public-lang-switcher a.active {
    background: var(--primary, #3b82f6);
    color: #fff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* BLOG STYLES */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08), 0 15px 25px rgba(0,0,0,0.04);
}
.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}
.blog-card-meta time {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-tag {
    background: #eaf2f8;
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.blog-card-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}
.blog-card-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-title a:hover {
    color: var(--primary);
}
.blog-card-excerpt {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-card-read-more {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}
.blog-card-read-more:hover {
    gap: 12px;
}

/* SINGLE ARTICLE */
.blog-single {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 40px;
}
.blog-single-content {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}
.blog-single-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-top: 40px;
    margin-bottom: 20px;
}
.blog-single-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
}
.blog-single-content p {
    margin-bottom: 20px;
}
.blog-single-content ul, .blog-single-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.blog-single-content li {
    margin-bottom: 10px;
}
.blog-single-content strong {
    color: #1e293b;
}

@media (max-width: 768px) {
    .blog-single {
        padding: 25px;
    }
    .blog-single-content {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
  .mobile-reverse-grid {
    display: flex !important;
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .hide-on-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-on-desktop { display: none !important; }
}
