/* torkelithon Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --torkelithon-white: #ffffff;
  --torkelithon-dark-blue: #27374d;
  --torkelithon-blue: #526d82;
  --torkelithon-light-blue: #9db2bf;
  --torkelithon-lightest: #dde6ed;

  /* Spacing */
  --torkelithon-space-xs: 0.5rem;
  --torkelithon-space-sm: 1rem;
  --torkelithon-space-md: 2rem;
  --torkelithon-space-lg: 4rem;
  --torkelithon-space-xl: 6rem;

  /* Fonts */
  --torkelithon-heading-font: 'Cormorant Garamond', serif;
  --torkelithon-body-font: 'Nunito', sans-serif;

  /* Border radius */
  --torkelithon-radius-sm: 4px;
  --torkelithon-radius-md: 8px;
  --torkelithon-radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--torkelithon-body-font);
  color: var(--torkelithon-dark-blue);
  line-height: 1.6;
  background-color: var(--torkelithon-white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--torkelithon-heading-font);
  margin-bottom: var(--torkelithon-space-sm);
  font-weight: 600;
  line-height: 1.2;
  color: var(--torkelithon-dark-blue);
}

h1 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--torkelithon-space-md);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--torkelithon-light-blue);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--torkelithon-space-sm);
}

a {
  color: var(--torkelithon-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--torkelithon-dark-blue);
}

/* Layout */
.torkelithon-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--torkelithon-space-sm);
}

.torkelithon-section {
  padding: var(--torkelithon-space-lg) 0;
}

.torkelithon-section-title {
  text-align: center;
  margin-bottom: var(--torkelithon-space-lg);
}

.torkelithon-section-title h2 {
  display: inline-block;
}

.torkelithon-section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
.torkelithon-header {
  background-color: var(--torkelithon-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.torkelithon-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--torkelithon-space-sm) 0;
}

.torkelithon-nav ul {
  display: flex;
  list-style: none;
}

.torkelithon-nav li {
  margin-left: var(--torkelithon-space-md);
}

.torkelithon-nav a {
  color: var(--torkelithon-dark-blue);
  font-weight: 500;
  position: relative;
}

.torkelithon-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--torkelithon-light-blue);
  transition: width 0.3s ease;
}

.torkelithon-nav a:hover::after {
  width: 100%;
}

.torkelithon-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--torkelithon-dark-blue);
}

/* Hero Section */
.torkelithon-hero {
  height: 80vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--torkelithon-lightest);
  overflow: hidden;
}

.torkelithon-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%239DB2BF" fill-opacity="0.1"/><path d="M0 50 L100 50" stroke="%23DDE6ED" stroke-width="0.5"/><path d="M50 0 L50 100" stroke="%23DDE6ED" stroke-width="0.5"/></svg>');
  opacity: 0.5;
}

.torkelithon-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.torkelithon-hero h1 {
  font-size: 3rem;
  margin-bottom: var(--torkelithon-space-md);
  color: var(--torkelithon-dark-blue);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.torkelithon-hero p {
  font-size: 1.2rem;
  margin-bottom: var(--torkelithon-space-md);
  color: var(--torkelithon-blue);
}

.torkelithon-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--torkelithon-blue);
  color: var(--torkelithon-white);
  border: none;
  border-radius: var(--torkelithon-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.torkelithon-btn:hover {
  background-color: var(--torkelithon-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* About Section */
.torkelithon-about {
  background-color: var(--torkelithon-white);
}

.torkelithon-about-content {
  display: flex;
  gap: var(--torkelithon-space-lg);
  align-items: center;
}

.torkelithon-about-text {
  flex: 1;
}

.torkelithon-about-image {
  flex: 1;
  border-radius: var(--torkelithon-radius-md);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.torkelithon-about-image:hover {
  transform: scale(1.02);
}

.torkelithon-about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Section */
.torkelithon-services {
  background-color: var(--torkelithon-lightest);
  position: relative;
  overflow: hidden;
}

.torkelithon-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--torkelithon-light-blue);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.torkelithon-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--torkelithon-space-md);
}

.torkelithon-service-card {
  background-color: var(--torkelithon-white);
  border-radius: var(--torkelithon-radius-md);
  padding: var(--torkelithon-space-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.torkelithon-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.torkelithon-service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--torkelithon-space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--torkelithon-lightest);
  color: var(--torkelithon-dark-blue);
}

.torkelithon-service-icon svg {
  width: 30px;
  height: 30px;
}

.torkelithon-service-title {
  margin-bottom: var(--torkelithon-space-xs);
  font-size: 1.2rem;
}

/* Pricing Section */
.torkelithon-pricing {
  background-color: var(--torkelithon-white);
}

.torkelithon-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--torkelithon-space-md);
}

.torkelithon-price-card {
  background-color: var(--torkelithon-lightest);
  border-radius: var(--torkelithon-radius-md);
  padding: var(--torkelithon-space-md);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.torkelithon-price-card:hover {
  transform: translateY(-5px);
}

.torkelithon-price-card.torkelithon-featured {
  background-color: var(--torkelithon-light-blue);
  color: var(--torkelithon-white);
}

.torkelithon-price-card.torkelithon-featured h3,
.torkelithon-price-card.torkelithon-featured .torkelithon-price {
  color: var(--torkelithon-white);
}

.torkelithon-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: var(--torkelithon-space-sm) 0;
  color: var(--torkelithon-blue);
}

.torkelithon-price span {
  font-size: 1rem;
  font-weight: 400;
}

.torkelithon-price-features {
  list-style: none;
  margin: var(--torkelithon-space-md) 0;
}

.torkelithon-price-features li {
  margin-bottom: var(--torkelithon-space-xs);
  position: relative;
  padding-left: 20px;
}

.torkelithon-price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--torkelithon-blue);
}

.torkelithon-price-card.torkelithon-featured
  .torkelithon-price-features
  li::before {
  color: var(--torkelithon-white);
}

/* Testimonials Section */
.torkelithon-testimonials {
  background-color: var(--torkelithon-lightest);
  position: relative;
  overflow: hidden;
}

.torkelithon-testimonials::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--torkelithon-light-blue);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.torkelithon-testimonials-slider {
  position: relative;
  overflow: hidden;
}

.torkelithon-testimonials-container {
  display: flex;
  transition: transform 0.5s ease;
}

.torkelithon-testimonial {
  min-width: 100%;
  padding: 0 var(--torkelithon-space-md);
}

.torkelithon-testimonial-inner {
  background-color: var(--torkelithon-white);
  border-radius: var(--torkelithon-radius-md);
  padding: var(--torkelithon-space-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.torkelithon-testimonial-text {
  margin-bottom: var(--torkelithon-space-md);
  font-style: italic;
}

.torkelithon-testimonial-author {
  display: flex;
  align-items: center;
}

.torkelithon-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--torkelithon-space-sm);
}

.torkelithon-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.torkelithon-testimonial-info h4 {
  margin-bottom: 0;
}

.torkelithon-testimonial-info p {
  font-size: 0.9rem;
  color: var(--torkelithon-blue);
  margin-bottom: 0;
}

.torkelithon-slider-nav {
  display: flex;
  justify-content: center;
  margin-top: var(--torkelithon-space-md);
}

.torkelithon-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--torkelithon-light-blue);
  opacity: 0.5;
  margin: 0 5px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.torkelithon-slider-dot.torkelithon-active {
  opacity: 1;
}

/* Schedule Section */
.torkelithon-schedule {
  background-color: var(--torkelithon-white);
}

.torkelithon-schedule-tabs {
  display: flex;
  margin-bottom: var(--torkelithon-space-md);
  border-bottom: 1px solid var(--torkelithon-lightest);
  overflow-x: auto;
}

.torkelithon-tab {
  padding: var(--torkelithon-space-sm) var(--torkelithon-space-md);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.torkelithon-tab.torkelithon-active {
  border-bottom-color: var(--torkelithon-light-blue);
  color: var(--torkelithon-dark-blue);
  font-weight: 600;
}

.torkelithon-tab-content {
  display: none;
}

.torkelithon-tab-content.torkelithon-active {
  display: block;
}

.torkelithon-class-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--torkelithon-space-sm) 0;
  border-bottom: 1px solid var(--torkelithon-lightest);
}

.torkelithon-class-info {
  flex: 1;
}

.torkelithon-class-info h4 {
  margin-bottom: 0;
}

.torkelithon-class-meta {
  display: flex;
  color: var(--torkelithon-blue);
  font-size: 0.9rem;
}

.torkelithon-class-meta span {
  margin-right: var(--torkelithon-space-sm);
  display: flex;
  align-items: center;
}

.torkelithon-class-meta span svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.torkelithon-class-action {
  background-color: var(--torkelithon-lightest);
  color: var(--torkelithon-dark-blue);
  padding: 0.5rem 1rem;
  border-radius: var(--torkelithon-radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
}

.torkelithon-class-action:hover {
  background-color: var(--torkelithon-light-blue);
  color: var(--torkelithon-white);
}

/* Contact Section */
.torkelithon-contact {
  background-color: var(--torkelithon-lightest);
}

.torkelithon-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--torkelithon-space-lg);
}

.torkelithon-contact-info h3 {
  margin-bottom: var(--torkelithon-space-md);
}

.torkelithon-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--torkelithon-space-sm);
}

.torkelithon-contact-icon {
  width: 24px;
  height: 24px;
  margin-right: var(--torkelithon-space-sm);
  color: var(--torkelithon-blue);
}

.torkelithon-contact-form {
  background-color: var(--torkelithon-white);
  border-radius: var(--torkelithon-radius-md);
  padding: var(--torkelithon-space-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.torkelithon-form-group {
  margin-bottom: var(--torkelithon-space-sm);
}

.torkelithon-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.torkelithon-form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--torkelithon-lightest);
  border-radius: var(--torkelithon-radius-sm);
  font-family: var(--torkelithon-body-font);
  transition: border-color 0.3s ease;
}

.torkelithon-form-control:focus {
  outline: none;
  border-color: var(--torkelithon-light-blue);
}

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

/* Footer */
.torkelithon-footer {
  background-color: var(--torkelithon-dark-blue);
  color: var(--torkelithon-white);
  padding: var(--torkelithon-space-lg) 0 var(--torkelithon-space-md);
}

.torkelithon-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--torkelithon-space-lg);
}

.torkelithon-footer-logo {
  font-family: var(--torkelithon-heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--torkelithon-white);
  margin-bottom: var(--torkelithon-space-sm);
}

.torkelithon-footer-logo span {
  color: var(--torkelithon-light-blue);
}

.torkelithon-footer-about p {
  margin-bottom: var(--torkelithon-space-sm);
  color: var(--torkelithon-lightest);
}

.torkelithon-footer-title {
  color: var(--torkelithon-white);
  margin-bottom: var(--torkelithon-space-sm);
  position: relative;
  padding-bottom: var(--torkelithon-space-xs);
}

.torkelithon-footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--torkelithon-light-blue);
}

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

.torkelithon-footer-links li {
  margin-bottom: var(--torkelithon-space-xs);
}

.torkelithon-footer-links a {
  color: var(--torkelithon-lightest);
  transition: color 0.3s ease;
}

.torkelithon-footer-links a:hover {
  color: var(--torkelithon-light-blue);
  padding-left: 5px;
}

.torkelithon-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--torkelithon-white);
  transition: all 0.3s ease;
}

.torkelithon-social-link:hover {
  background-color: var(--torkelithon-light-blue);
  transform: translateY(-3px);
}

.torkelithon-social-link svg {
  width: 18px;
  height: 18px;
}

.torkelithon-footer-bottom {
  margin-top: var(--torkelithon-space-lg);
  padding-top: var(--torkelithon-space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--torkelithon-lightest);
  font-size: 0.9rem;
}

.torkelithon-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--torkelithon-space-sm);
  margin-top: var(--torkelithon-space-md);
}

.torkelithon-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--torkelithon-radius-sm);
  cursor: pointer;
}

.torkelithon-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.torkelithon-gallery-item:hover img {
  transform: scale(1.05);
}

.torkelithon-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 55, 77, 0.7);
  color: var(--torkelithon-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.torkelithon-gallery-item:hover .torkelithon-gallery-overlay {
  opacity: 1;
}

.torkelithon-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.torkelithon-lightbox.torkelithon-active {
  opacity: 1;
  visibility: visible;
}

.torkelithon-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.torkelithon-lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: var(--torkelithon-radius-sm);
}

.torkelithon-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--torkelithon-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.torkelithon-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.torkelithon-lightbox-prev,
.torkelithon-lightbox-next {
  background: none;
  border: none;
  color: var(--torkelithon-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.torkelithon-lightbox-prev:hover,
.torkelithon-lightbox-next:hover {
  opacity: 1;
}

/* Thank You Page */
.torkelithon-thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--torkelithon-lightest);
  text-align: center;
}

.torkelithon-thankyou-inner {
  max-width: 600px;
  padding: var(--torkelithon-space-lg);
  background-color: var(--torkelithon-white);
  border-radius: var(--torkelithon-radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.torkelithon-thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--torkelithon-space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--torkelithon-light-blue);
  color: var(--torkelithon-white);
}

.torkelithon-thankyou-icon svg {
  width: 40px;
  height: 40px;
}

.torkelithon-thankyou h1 {
  margin-bottom: var(--torkelithon-space-sm);
}

.torkelithon-thankyou p {
  margin-bottom: var(--torkelithon-space-md);
  color: var(--torkelithon-blue);
}

/* Policy Pages */
.torkelithon-policy {
  padding: var(--torkelithon-space-xl) 0;
}

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

.torkelithon-policy h1 {
  margin-bottom: var(--torkelithon-space-md);
}

.torkelithon-policy h2 {
  margin-top: var(--torkelithon-space-lg);
}

.torkelithon-policy h3 {
  margin-top: var(--torkelithon-space-md);
}

.torkelithon-policy ul,
.torkelithon-policy ol {
  margin-left: var(--torkelithon-space-md);
  margin-bottom: var(--torkelithon-space-md);
}

.torkelithon-policy li {
  margin-bottom: var(--torkelithon-space-xs);
}

/* Responsive */
@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .torkelithon-hero {
    height: 60vh;
  }

  .torkelithon-hero h1 {
    font-size: 2.2rem;
  }

  .torkelithon-about-content {
    flex-direction: column;
  }

  .torkelithon-contact-inner {
    grid-template-columns: 1fr;
  }

  .torkelithon-section {
    padding: var(--torkelithon-space-md) 0;
  }

  .torkelithon-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--torkelithon-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: var(--torkelithon-space-md);
  }

  .torkelithon-nav.torkelithon-active ul {
    display: flex;
  }

  .torkelithon-nav li {
    margin: 0 0 var(--torkelithon-space-sm);
  }

  .torkelithon-mobile-toggle {
    display: block;
  }
}

@media (max-width: 767px) {
  .torkelithon-space-lg {
    --torkelithon-space-lg: 3rem;
  }

  .torkelithon-space-xl {
    --torkelithon-space-xl: 4rem;
  }

  .torkelithon-footer-inner {
    grid-template-columns: 1fr;
  }

  .torkelithon-price {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .torkelithon-space-md {
    --torkelithon-space-md: 1.5rem;
  }

  .torkelithon-space-lg {
    --torkelithon-space-lg: 2.5rem;
  }

  .torkelithon-hero {
    min-height: 400px;
  }

  .torkelithon-hero h1 {
    font-size: 1.8rem;
  }

  .torkelithon-hero p {
    font-size: 1rem;
  }

  .torkelithon-services-grid,
  .torkelithon-pricing-grid {
    grid-template-columns: 1fr;
  }

  .torkelithon-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .torkelithon-space-sm {
    --torkelithon-space-sm: 0.8rem;
  }

  .torkelithon-space-md {
    --torkelithon-space-md: 1.2rem;
  }

  .torkelithon-space-lg {
    --torkelithon-space-lg: 2rem;
  }

  .torkelithon-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .torkelithon-hero h1 {
    font-size: 1.6rem;
  }

  .torkelithon-testimonial-inner {
    padding: var(--torkelithon-space-sm);
  }
}

ul {
  list-style: none;
}
