.elementor-37 .elementor-element.elementor-element-8b2af20{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-37 .elementor-element.elementor-element-328cc36{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-599c99d *//* Converting from Tailwind to custom CSS with blog prefix */
:root {
  /* Green color scheme */
  --blog-primary: oklch(0.45 0.15 140);
  --blog-primary-foreground: oklch(0.98 0.005 106);
  --blog-background: oklch(0.98 0.005 106);
  --blog-foreground: oklch(0.15 0.02 140);
  --blog-card: oklch(1 0 0);
  --blog-card-foreground: oklch(0.15 0.02 140);
  --blog-muted: oklch(0.95 0.01 106);
  --blog-muted-foreground: oklch(0.55 0.02 140);
  --blog-accent: oklch(0.92 0.02 106);
  --blog-accent-foreground: oklch(0.15 0.02 140);
  --blog-border: oklch(0.9 0.01 106);
  --blog-radius: 0.75rem;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--blog-background);
  color: var(--blog-foreground);
  line-height: 1.6;
}

.blog-main {
  min-height: 100vh;
}

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

/* Hero Section */
.blog-hero {
  padding: 3rem 0 5rem;
  background: linear-gradient(135deg, var(--blog-background) 0%, var(--blog-accent) 100%);
}

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

@media (min-width: 1024px) {
  .blog-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: color-mix(in srgb, var(--blog-primary) 10%, transparent);
  color: var(--blog-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.blog-hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .blog-hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-hero-title {
    font-size: 3.75rem;
  }
}

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

.blog-hero-description {
  font-size: 1.125rem;
  color: var(--blog-muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .blog-hero-description {
    font-size: 1.25rem;
  }
}

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

@media (min-width: 768px) {
  .blog-stats-grid {
    gap: 1.5rem;
  }
}

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

.blog-stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blog-primary);
}

@media (min-width: 768px) {
  .blog-stat-number {
    font-size: 1.5rem;
  }
}

.blog-stat-label {
  font-size: 0.75rem;
  color: var(--blog-muted-foreground);
}

@media (min-width: 768px) {
  .blog-stat-label {
    font-size: 0.875rem;
  }
}

.blog-hero-card {
  background: color-mix(in srgb, var(--blog-card) 80%, transparent);
  backdrop-filter: blur(8px);
  border: 2px solid var(--blog-border);
  border-radius: var(--blog-radius);
  padding: 1rem;
}

@media (min-width: 768px) {
  .blog-hero-card {
    padding: 2rem;
  }
}

.blog-hero-card-header {
  margin-bottom: 1.5rem;
}

.blog-hero-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .blog-hero-card-title {
    font-size: 1.25rem;
  }
}

.blog-hero-card-subtitle {
  font-size: 0.875rem;
  color: var(--blog-muted-foreground);
}

@media (min-width: 768px) {
  .blog-hero-card-subtitle {
    font-size: 1rem;
  }
}

.blog-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .blog-pricing-list {
    gap: 1rem;
  }
}

.blog-pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: color-mix(in srgb, var(--blog-accent) 50%, transparent);
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .blog-pricing-item {
    padding: 1rem;
  }
}

.blog-pricing-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .blog-pricing-info {
    gap: 0.75rem;
  }
}

.blog-pricing-icon {
  background-color: color-mix(in srgb, var(--blog-primary) 20%, transparent);
  padding: 0.375rem;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .blog-pricing-icon {
    padding: 0.5rem;
  }
}

.blog-pricing-title {
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .blog-pricing-title {
    font-size: 1rem;
  }
}

.blog-pricing-subtitle {
  font-size: 0.75rem;
  color: var(--blog-muted-foreground);
}

@media (min-width: 768px) {
  .blog-pricing-subtitle {
    font-size: 0.875rem;
  }
}

.blog-pricing-price {
  text-align: right;
}

.blog-pricing-amount {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blog-primary);
}

@media (min-width: 768px) {
  .blog-pricing-amount {
    font-size: 1rem;
  }
}

.blog-pricing-unit {
  font-size: 0.75rem;
  color: var(--blog-muted-foreground);
}

@media (min-width: 768px) {
  .blog-pricing-unit {
    font-size: 0.875rem;
  }
}

/* Sections */
.blog-section {
  padding: 3rem 0 5rem;
}

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

@media (min-width: 768px) {
  .blog-section-header {
    margin-bottom: 4rem;
  }
}

.blog-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .blog-section-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-section-title {
    font-size: 2.25rem;
  }
}

.blog-section-description {
  font-size: 1.125rem;
  color: var(--blog-muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .blog-section-description {
    font-size: 1.25rem;
  }
}

.blog-subsection {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .blog-subsection {
    margin-bottom: 4rem;
  }
}

.blog-subsection-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .blog-subsection-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

/* Cards */
.blog-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-seasonal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .blog-seasonal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.blog-card {
  background-color: var(--blog-card);
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius);
  padding: 1rem;
}

@media (min-width: 768px) {
  .blog-card {
    padding: 1.5rem;
  }
}

.blog-card-header {
  margin-bottom: 1rem;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .blog-card-title {
    font-size: 1.125rem;
  }
}

.blog-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blog-primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .blog-card-price {
    font-size: 1.5rem;
  }
}

.blog-price-increase {
  color: #dc2626;
}

.blog-price-normal {
  color: #16a34a;
}

.blog-card-description {
  font-size: 0.75rem;
  color: var(--blog-muted-foreground);
}

@media (min-width: 768px) {
  .blog-card-description {
    font-size: 0.875rem;
  }
}

.blog-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .blog-card-label {
    font-size: 0.875rem;
  }
}

.blog-factor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-factor-list li {
  font-size: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .blog-factor-list li {
    font-size: 0.875rem;
  }
}

.blog-factor-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--blog-primary);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Calculator Section */
.blog-calculator-section {
  padding: 3rem 0 5rem;
  background-color: var(--blog-muted);
}

.blog-calculator-wrapper {
  max-width: 64rem;
  margin: 0 auto;
}

.blog-calculator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .blog-calculator-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.blog-calculator-form,
.blog-calculator-result {
  background-color: var(--blog-card);
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .blog-calculator-form,
  .blog-calculator-result {
    padding: 2rem;
  }
}

.blog-calculator-result {
  background-color: color-mix(in srgb, var(--blog-primary) 5%, var(--blog-card));
  border-color: color-mix(in srgb, var(--blog-primary) 20%, var(--blog-border));
}

.blog-calculator-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .blog-calculator-title {
    font-size: 1.25rem;
  }
}

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

.blog-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.blog-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--blog-muted);
  outline: none;
  -webkit-appearance: none;
}

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

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

.blog-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--blog-muted-foreground);
  margin-top: 0.25rem;
}

.blog-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--blog-border);
  border-radius: 0.5rem;
  background-color: var(--blog-card);
  color: var(--blog-foreground);
  font-size: 0.875rem;
}

.blog-select:focus {
  outline: none;
  border-color: var(--blog-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--blog-primary) 20%, transparent);
}

.blog-result-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-result-placeholder {
  text-align: center;
  padding: 3rem 0;
  color: var(--blog-muted-foreground);
}

.blog-result-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  opacity: 0.5;
}

.blog-result-main {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--blog-card);
  border-radius: 0.5rem;
  border: 1px solid var(--blog-border);
}

.blog-result-hourly {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blog-primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .blog-result-hourly {
    font-size: 1.875rem;
  }
}

.blog-result-label {
  color: var(--blog-muted-foreground);
}

.blog-result-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.blog-result-detail {
  text-align: center;
  padding: 1rem;
  background-color: var(--blog-card);
  border-radius: 0.5rem;
  border: 1px solid var(--blog-border);
}

.blog-result-detail-value {
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .blog-result-detail-value {
    font-size: 1.25rem;
  }
}

.blog-result-detail-label {
  font-size: 0.75rem;
  color: var(--blog-muted-foreground);
}

@media (min-width: 768px) {
  .blog-result-detail-label {
    font-size: 0.875rem;
  }
}

.blog-result-warning {
  padding: 1rem;
  background-color: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 0.5rem;
}

.blog-result-warning p {
  font-size: 0.75rem;
  color: #92400e;
}

@media (min-width: 768px) {
  .blog-result-warning p {
    font-size: 0.875rem;
  }
}

/* Icons */
.blog-icon {
  width: 1rem;
  height: 1rem;
  color: currentColor;
}

/* Mobile optimizations */
@media (max-width: 767px) {
  .blog-container {
    padding: 0 0.75rem;
  }

  .blog-hero {
    padding: 2rem 0 3rem;
  }

  .blog-section {
    padding: 2rem 0 3rem;
  }

  .blog-calculator-section {
    padding: 2rem 0 3rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-245519c */.privat-tools-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.privat-tools-container {
  max-width: 1200px;
  margin: 0 auto;
}

.privat-tools-content {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.privat-tools-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
}

.privat-tools-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 3rem;
}

.privat-tools-text p {
  margin-bottom: 1.5rem;
}

.privat-tools-text p:last-child {
  margin-bottom: 0;
}

.privat-tools-link {
  color: #16a34a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.privat-tools-link:hover {
  color: #166534;
  border-bottom-color: #16a34a;
}

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

.privat-tools-highlight {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privat-tools-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.privat-tools-highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.privat-tools-highlight h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #166534;
  margin-bottom: 0.5rem;
}

.privat-tools-highlight p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .privat-tools-content {
    padding: 2rem;
  }

  .privat-tools-title {
    font-size: 2rem;
  }

  .privat-tools-text {
    font-size: 1rem;
  }

  .privat-tools-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .privat-tools-highlight {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privat-tools-section {
    padding: 2rem 1rem;
  }

  .privat-tools-content {
    padding: 1.5rem;
  }

  .privat-tools-title {
    font-size: 1.75rem;
  }
}/* End custom CSS */