/*
Theme Name: PROFO
Theme URI: https://profo.lt
Author: PROFO Team
Author URI: https://profo.lt
Description: Modern WordPress theme for PROFO - a platform connecting clients with trusted professionals across Lithuania. Clean, secure, and responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: profo
Tags: one-column, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   CSS Variables - Design System
   ======================================== */

:root {
  /* Colors - Light Mode */
  --background: hsl(150, 20%, 98%);
  --foreground: hsl(150, 30%, 10%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(150, 30%, 10%);

  --primary: hsl(147, 53%, 38%);
  --primary-foreground: hsl(0, 0%, 100%);

  --secondary: hsl(150, 30%, 96%);
  --secondary-foreground: hsl(150, 30%, 10%);

  --muted: hsl(150, 20%, 96%);
  --muted-foreground: hsl(150, 10%, 45%);

  --border: hsl(150, 20%, 90%);
  --input: hsl(150, 20%, 90%);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(147, 53%, 38%) 0%, hsl(160, 60%, 45%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(150, 20%, 98%) 0%, hsl(150, 25%, 95%) 100%);

  /* Shadows */
  --shadow-soft: 0 4px 20px -2px hsla(147, 53%, 38%, 0.15);
  --shadow-card: 0 10px 40px -10px hsla(150, 30%, 10%, 0.1);
  --shadow-button: 0 4px 14px 0 hsla(147, 53%, 38%, 0.35);

  /* Border radius */
  --radius: 0.75rem;
}

/* ========================================
   Base Styles
   ======================================== */

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

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ========================================
   Container
   ======================================== */

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

@media (min-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   Header Styles
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: hsla(150, 20%, 98%, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 64px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .header-flex {
    gap: 2rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .site-logo {
    font-size: 1.125rem;
  }
}

.site-logo-image {
  height: 32px;
  width: auto;
}

@media (min-width: 640px) {
  .site-logo-image {
    height: 40px;
  }
}

.main-navigation {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

@media (min-width: 768px) {
  .main-navigation {
    display: flex;
  }
}

.main-navigation ul,
.main-navigation .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  text-decoration: none;
}

.main-navigation a:hover {
  color: var(--foreground);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1002;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: #ffffff;
  z-index: 1001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu a {
  display: block;
  color: #333;
  padding: 1rem 0;
  transition: color 0.3s ease;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8;
}

.mobile-menu a:not(.btn):hover {
  color: #2d7c5c;
}

.mobile-menu .btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  border-bottom: none;
}

/* ========================================
   Button Styles
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
}

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

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

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

@media (max-width: 400px) {
  .btn-xl {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-decoration-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-decoration-circle.top-right {
  top: -160px;
  right: -160px;
  background: hsla(147, 53%, 38%, 0.1);
}

.hero-decoration-circle.bottom-left {
  bottom: -160px;
  left: -160px;
  background: hsla(147, 53%, 38%, 0.05);
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 2rem 0;
}

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

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

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(147, 53%, 38%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

@media (max-width: 400px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

/* Small mobile devices */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.625rem;
  }
}

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

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

.hero-gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 400px) {
  .hero-description {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-values {
  margin-top: 3rem;
}

.hero-values-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-values-tagline {
    text-align: left;
  }
}

.hero-values-subtitle {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-values-subtitle {
    text-align: left;
  }
}

.hero-values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-values-list {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-values-list {
    justify-content: flex-start;
    gap: 2rem;
  }
}

.hero-value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
}

.hero-value-item:hover {
  transform: translateX(4px);
}

.hero-value-icon {
  flex-shrink: 0;
  color: var(--primary);
  stroke: var(--primary);
}

.hero-value-text {
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.4;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
  animation: float 3s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Responsive image sizes */
@media (min-width: 640px) {
  .hero-image img {
    max-width: 360px;
  }
}

@media (min-width: 768px) {
  .hero-image img {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .hero-image img {
    max-width: 450px;
  }
}

@media (min-width: 1280px) {
  .hero-image img {
    max-width: 500px;
  }
}

/* High DPI (Retina) displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image img {
    image-rendering: -webkit-optimize-contrast;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero Problem Statement */
.hero-problem-statement {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem 1.125rem;
  background: linear-gradient(135deg, hsla(147, 53%, 38%, 0.07) 0%, hsla(160, 60%, 45%, 0.03) 100%);
  border: 1px solid hsla(147, 53%, 38%, 0.2);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  max-width: 420px;
}

@media (min-width: 1024px) {
  .hero-problem-statement {
    max-width: 460px;
  }
}

.hero-problem-hook {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.45;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.hero-problem-body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.hero-problem-accent {
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: italic;
  color: hsl(20, 65%, 48%);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.hero-problem-solution {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.hero-problem-brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-problem-divider {
  text-align: center;
  margin-top: 0.875rem;
  color: var(--primary);
  opacity: 0.5;
  animation: problemArrowPulse 2s ease-in-out infinite;
}

@keyframes problemArrowPulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(3px); opacity: 0.8; }
}

/* Hero Subscribe Form */
.hero-subscribe-form {
  margin-top: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: hsla(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  max-width: 420px;
}

@media (min-width: 1024px) {
  .hero-subscribe-form {
    max-width: 460px;
  }
}

.hero-subscribe-label {
  line-height: 1.4;
}

.hero-subscribe-label--hook {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.hero-subscribe-label--instruction {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.hero-subscribe-form-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-subscribe-email-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9375rem;
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

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

.hero-subscribe-email-input::placeholder {
  color: var(--muted-foreground);
}

.hero-subscribe-devices {
  display: flex;
  gap: 1rem;
}

.hero-subscribe-radio {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  color: var(--foreground);
  cursor: pointer;
  user-select: none;
}

.hero-subscribe-radio input[type="radio"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.hero-subscribe-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}

.hero-subscribe-checkbox input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.hero-subscribe-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-subscribe-btn:hover {
  transform: translateY(-2px);
}

.hero-subscribe-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.hero-subscribe-message {
  font-size: 0.8125rem;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-subscribe-message.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-subscribe-message.success {
  background: hsla(147, 53%, 38%, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

.hero-subscribe-message.error {
  background: hsla(0, 70%, 50%, 0.1);
  color: hsl(0, 70%, 50%);
  border-color: hsl(0, 70%, 50%);
}

/* ========================================
   Section Styles
   ======================================== */

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.section-alt {
  background: hsla(150, 30%, 96%, 0.3);
}

/* ========================================
   Features Section
   ======================================== */

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

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

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: hsla(147, 53%, 38%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  color: var(--primary-foreground);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* ========================================
   Screenshots Section
   ======================================== */

.screenshots-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .screenshots-content {
    grid-template-columns: 1fr 1fr;
  }
}

.screenshots-display {
  position: relative;
  display: flex;
  justify-content: center;
}

.screenshots-glow {
  position: absolute;
  inset: 0;
  background: hsla(147, 53%, 38%, 0.1);
  filter: blur(80px);
  border-radius: 50%;
  transform: scale(0.75);
}

.screenshots-main {
  position: relative;
  z-index: 10;
}

.screenshots-main img {
  width: 320px;
  height: 650px;
  object-fit: contain;
  object-position: center;
  border-radius: 1.5rem;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
  animation: float 4s ease-in-out infinite;
  background: transparent;
}

/* Responsive screenshot sizes */
@media (max-width: 768px) {
  .screenshots-main img {
    width: 280px;
    height: 570px;
  }
}

@media (max-width: 480px) {
  .screenshots-main img {
    width: 240px;
    height: 490px;
  }
}

.screenshots-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.screenshot-item {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.screenshot-item:hover {
  background: var(--card);
  border-color: hsla(147, 53%, 38%, 0.5);
}

.screenshot-item.active {
  background: var(--card);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.screenshot-number {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--secondary);
  color: var(--muted-foreground);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.screenshot-item.active .screenshot-number {
  background: var(--primary);
  color: var(--primary-foreground);
}

.screenshot-info {
  flex: 1;
}

.screenshot-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.screenshot-item.active .screenshot-title {
  color: var(--foreground);
}

.screenshot-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.screenshots-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.screenshot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.screenshot-dot.active {
  width: 32px;
  border-radius: 5px;
  background: var(--primary);
}

/* ========================================
   How It Works Section
   ======================================== */

.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

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

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

.steps-line {
  display: none;
}

@media (min-width: 1024px) {
  .steps-line {
    display: block;
    position: absolute;
    top: 64px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border);
  }
}

.step-item {
  position: relative;
  text-align: center;
}

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

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
  max-width: 20rem;
  margin: 0 auto;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
  background: #ffffff;
  padding: 4rem 0;
}

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

.testimonials-carousel-wrapper {
  position: relative;
  margin-top: 3rem;
  padding: 0 50px;
}

.testimonials-carousel {
  overflow: hidden;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s ease;
  padding: 0;
}

.testimonial-card {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 12px;
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: calc((100% - 2.5rem) / 3);
  max-width: calc((100% - 2.5rem) / 3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testimonial-quote svg {
  width: 48px;
  height: 48px;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.testimonial-author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1a1a1a;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-stars .star {
  font-size: 1.125rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #666;
}

.testimonial-location {
  font-size: 0.875rem;
  color: #666;
}

.testimonial-date {
  font-size: 0.875rem;
  color: #999;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #333;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #666;
  padding: 0;
}

.testimonial-arrow:hover {
  color: var(--primary);
  transform: translateY(-50%) scale(1.2);
}

.testimonial-arrow-left {
  left: -40px;
}

.testimonial-arrow-right {
  right: -40px;
}

.testimonial-arrow svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    min-width: calc((100% - 1.25rem) / 2);
    max-width: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    padding: 0 60px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .testimonial-arrow {
    width: 36px;
    height: 36px;
  }

  .testimonial-arrow-left {
    left: -50px;
  }

  .testimonial-arrow-right {
    right: -50px;
  }

  .testimonial-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* ========================================
   Download Section
   ======================================== */

.download-section {
  position: relative;
  overflow: hidden;
}

.download-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: hsla(147, 53%, 38%, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.download-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.download-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .download-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .download-title {
    font-size: 3rem;
  }
}

.download-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .download-buttons {
    flex-direction: row;
  }
}

/* Store Badge Styles */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background: #000;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #000;
  min-width: 140px;
  height: 52px;
}

@media (min-width: 640px) {
  .store-badge {
    padding: 0.625rem 1.5rem;
    min-width: 160px;
  }
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.store-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.store-name {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

/* Google Play specific styles */
.google-play .store-label {
  font-size: 0.5625rem;
}

.google-play .store-name {
  font-size: 1rem;
}

.download-badges {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.download-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.download-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* Email Notification Form */
.email-notification-form {
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.email-notification-text {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.email-form-group {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

@media (min-width: 640px) {
  .email-form-group {
    flex-direction: row;
  }
}

.email-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background);
  color: var(--foreground);
}

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

.email-input::placeholder {
  color: var(--muted-foreground);
}

.email-submit-btn {
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.email-submit-btn:hover {
  transform: translateY(-2px);
}

.email-form-message {
  margin-top: 1rem;
  font-size: 0.875rem;
  padding: 0.75rem;
  border-radius: 6px;
  display: none;
}

.email-form-message.success {
  display: block;
  background: hsla(147, 53%, 38%, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.email-form-message.error {
  display: block;
  background: hsla(0, 70%, 50%, 0.1);
  color: hsl(0, 70%, 50%);
  border: 1px solid hsl(0, 70%, 50%);
}

/* ========================================
   Footer Styles
   ======================================== */

.site-footer {
  padding: 2rem 0;
  background: #000000;
  color: var(--background);
}

.footer-content {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.footer-description {
  color: hsla(150, 20%, 98%, 0.7);
  max-width: 24rem;
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: hsla(150, 20%, 98%, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--background);
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid hsla(150, 20%, 98%, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: hsla(150, 20%, 98%, 0.5);
}

/* ========================================
   DUK (FAQ) Page
   ======================================== */

.duk-section {
  background: #ffffff;
  padding: 6rem 0;
  min-height: 70vh;
}

.duk-header {
  text-align: center;
  margin-bottom: 4rem;
}

.duk-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.duk-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.duk-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.duk-item {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.duk-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.duk-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.duk-question:hover {
  color: var(--primary);
}

.duk-question span {
  flex: 1;
}

.duk-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.duk-question[aria-expanded="true"] .duk-icon {
  transform: rotate(180deg);
}

.duk-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.duk-answer.active {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.duk-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .duk-section {
    padding: 4rem 0;
  }

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

  .duk-subtitle {
    font-size: 1rem;
  }

  .duk-question {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .duk-answer.active {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

/* ========================================
   Kontaktai (Contacts) Page
   ======================================== */

.kontaktai-header-section {
  background: #ffffff;
  padding: 4rem 0 2rem 0;
}

.kontaktai-header {
  text-align: center;
  margin-bottom: 0;
}

.kontaktai-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.kontaktai-subtitle {
  font-size: 1.125rem;
  color: #666;
}

.kontaktai-info-section {
  background: #ffffff;
  padding: 4rem 0 6rem 0;
}

.kontaktai-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kontaktai-text {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 2rem;
}

.kontaktai-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontaktai-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.kontaktai-email svg {
  color: var(--primary);
  flex-shrink: 0;
}

.kontaktai-email a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kontaktai-email a:hover {
  color: #1e7a52;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .kontaktai-header-section {
    padding: 3rem 0 1.5rem 0;
  }

  .kontaktai-info-section {
    padding: 3rem 0 4rem 0;
  }

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

  .kontaktai-subtitle {
    font-size: 1rem;
  }

  .kontaktai-content {
    padding: 2rem 1.5rem;
  }

  .kontaktai-text {
    font-size: 1rem;
  }

  .kontaktai-email a {
    font-size: 1.125rem;
  }
}

/* ========================================
   Help Contact Form
   ======================================== */

.help-contact-section {
  background: #f8f9fa;
  padding: 6rem 0;
}

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

.help-contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.help-contact-subtitle {
  font-size: 1.125rem;
  color: #666;
}

.help-contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.help-contact-form .form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.help-contact-form .form-select,
.help-contact-form .form-input,
.help-contact-form .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: #333;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.help-contact-form .form-select:focus,
.help-contact-form .form-input:focus,
.help-contact-form .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 159, 94, 0.1);
}

.help-contact-form .form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

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

.help-contact-form .form-checkbox-group {
  margin-bottom: 2rem;
}

.help-contact-form .form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.help-contact-form .form-checkbox {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.help-contact-form .checkbox-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
}

.help-contact-form .checkbox-text .privacy-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.help-contact-form .checkbox-text .privacy-link:hover {
  color: #1e7a52;
  text-decoration: underline;
}

.help-contact-form .form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.help-contact-form .form-submit-btn:hover {
  background: #1e7a52;
  transform: translateY(-2px);
}

.help-contact-form .form-submit-btn:active {
  transform: translateY(0);
}

.help-contact-form .form-submit-btn:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
}

.help-contact-form .form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  text-align: center;
  display: none;
}

.help-contact-form .form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.help-contact-form .form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
  .help-contact-section {
    padding: 4rem 0;
  }

  .help-contact-title {
    font-size: 1.5rem;
  }

  .help-contact-subtitle {
    font-size: 1rem;
  }

  .help-contact-form {
    padding: 2rem 1.5rem;
  }

  .help-contact-form .form-submit-btn {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

/* ========================================
   Naudojimosi sąlygos (Terms & Conditions) Page
   ======================================== */

.terms-section {
  background: #ffffff;
  padding: 6rem 0;
  min-height: 70vh;
}

.terms-header {
  text-align: center;
  margin-bottom: 4rem;
}

.terms-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.terms-subtitle {
  font-size: 1rem;
  color: #999;
  font-style: italic;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.terms-section-item:last-child {
  border-bottom: none;
}

.terms-section-item h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.terms-section-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.terms-section-item p strong {
  color: #1a1a1a;
  font-weight: 600;
}

.terms-section-item ul {
  list-style: disc;
  padding-left: 2rem;
  margin: 1rem 0;
}

.terms-section-item ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.5rem;
}

.terms-contact {
  font-size: 1.125rem;
  font-weight: 600;
}

.terms-contact a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-contact a:hover {
  color: #1e7a52;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-section {
    padding: 4rem 0;
  }

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

  .terms-subtitle {
    font-size: 0.875rem;
  }

  .terms-section-item h2 {
    font-size: 1.25rem;
  }

  .terms-section-item p,
  .terms-section-item ul li {
    font-size: 0.9375rem;
  }

  .terms-section-item ul {
    padding-left: 1.5rem;
  }
}

/* ========================================
   Privatumo politika (Privacy Policy) Page
   ======================================== */

.privacy-section {
  background: #ffffff;
  padding: 6rem 0;
  min-height: 70vh;
}

.privacy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.privacy-updated {
  font-size: 0.875rem;
  color: #999;
  font-style: italic;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.privacy-section-item:last-child {
  border-bottom: none;
}

.privacy-section-item h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.privacy-section-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 1.5rem 0 1rem 0;
}

.privacy-section-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.privacy-section-item p strong {
  color: #1a1a1a;
  font-weight: 600;
}

.privacy-section-item p a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-section-item p a:hover {
  color: #1e7a52;
  text-decoration: underline;
}

.privacy-section-item ul {
  list-style: disc;
  padding-left: 2rem;
  margin: 1rem 0;
}

.privacy-section-item ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-section {
    padding: 4rem 0;
  }

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

  .privacy-updated {
    font-size: 0.8125rem;
  }

  .privacy-section-item h2 {
    font-size: 1.25rem;
  }

  .privacy-section-item h3 {
    font-size: 1.125rem;
  }

  .privacy-section-item p,
  .privacy-section-item ul li {
    font-size: 0.9375rem;
  }

  .privacy-section-item ul {
    padding-left: 1.5rem;
  }
}

/* ========================================
   Utility Classes
   ======================================== */

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

/* ========================================
   Paskyros ištrynimas / Redagavimas Pages
   ======================================== */

.deletion-section {
  padding: 4rem 0 6rem;
  background: #fff;
}

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

.deletion-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.deletion-subtitle {
  font-size: 1.125rem;
  color: #666;
  font-weight: 400;
}

.deletion-content {
  max-width: 800px;
  margin: 0 auto;
}

.deletion-section-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
}

.deletion-section-item:last-child {
  border-bottom: none;
}

.deletion-section-item h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.deletion-section-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.deletion-section-item p strong {
  color: #111;
}

.deletion-section-item p a,
.deletion-section-item ul li a {
  color: #e85d04;
  text-decoration: none;
}

.deletion-section-item p a:hover,
.deletion-section-item ul li a:hover {
  text-decoration: underline;
}

.deletion-section-item ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.75rem;
  color: #444;
}

.deletion-section-item ul li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.deletion-contact {
  background: #f9f9f9;
  border-radius: 0.75rem;
  padding: 2rem;
  border-bottom: none !important;
}

.deletion-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #e85d04;
  font-weight: 600;
  text-decoration: none;
}

.deletion-link:hover {
  text-decoration: underline;
}

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

  .deletion-title {
    font-size: 1.875rem;
  }

  .deletion-section-item h2 {
    font-size: 1.25rem;
  }

  .deletion-section-item p,
  .deletion-section-item ul li {
    font-size: 0.9375rem;
  }

  .deletion-section-item ul {
    padding-left: 1.5rem;
  }

  .deletion-contact {
    padding: 1.5rem;
  }
}
