:root {
  /* Primary Colors - complementary color scheme */
  --primary: #3a57e8;
  --primary-dark: #2942c8;
  --primary-light: #6179f0;
  --complementary: #e8ab3a;
  --complementary-dark: #c89229;
  --complementary-light: #f0c061;
  
  /* Neutral Colors */
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --text-light: #718096;
  --bg-light: #f7f9fc;
  --bg-medium: #edf2f7;
  --bg-dark: #e2e8f0;
  
  /* Neomorphic Colors */
  --neomorphic-light: rgba(255, 255, 255, 0.8);
  --neomorphic-shadow-light: rgba(255, 255, 255, 0.9);
  --neomorphic-shadow-dark: rgba(0, 0, 0, 0.1);
  
  /* Font Families */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  
  /* Shadows */
  --shadow-sm: 3px 3px 6px var(--neomorphic-shadow-dark), -3px -3px 6px var(--neomorphic-shadow-light);
  --shadow-md: 5px 5px 10px var(--neomorphic-shadow-dark), -5px -5px 10px var(--neomorphic-shadow-light);
  --shadow-lg: 10px 10px 20px var(--neomorphic-shadow-dark), -10px -10px 20px var(--neomorphic-shadow-light);
  --shadow-inset: inset 3px 3px 6px var(--neomorphic-shadow-dark), inset -3px -3px 6px var(--neomorphic-shadow-light);
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.container {
  padding-right: var(--spacing-md);
  padding-left: var(--spacing-md);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.mb-4 {
  margin-bottom: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-md);
}

.mt-5 {
  margin-top: var(--spacing-lg);
}

/* Neomorphic Elements */
.neomorphic-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.neomorphic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.neomorphic-input {
  background-color: var(--bg-light);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-inset);
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  width: 100%;
  font-family: var(--body-font);
  color: var(--text-dark);
  transition: box-shadow var(--transition-fast);
}

.neomorphic-input:focus {
  outline: none;
  box-shadow: inset 4px 4px 8px var(--neomorphic-shadow-dark), inset -4px -4px 8px var(--neomorphic-shadow-light);
}

.neomorphic-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(247, 249, 252, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: var(--spacing-sm) 0;
}

/* Buttons */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:active, button:active, input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:focus, button:focus, input[type='submit']:focus {
  outline: none;
}

.neomorphic-btn {
  background-color: var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.btn-primary, .btn-primary.neomorphic-btn {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover, .btn-primary.neomorphic-btn:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-complementary, .btn-complementary.neomorphic-btn {
  background-color: var(--complementary);
  color: white;
}

.btn-complementary:hover, .btn-complementary.neomorphic-btn:hover {
  background-color: var(--complementary-dark);
  color: white;
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Navigation */
.navbar-brand h1 {
  font-size: 1.75rem;
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 700;
}

.navbar-brand h1 span {
  color: var(--complementary);
}

.navbar-nav .nav-link {
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-medium);
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-nav .nav-link:hover:before {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 200px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--spacing-md);
}

.hero-buttons {
  margin-top: var(--spacing-md);
}

/* Features Section */
.features-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.features-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 30%, var(--bg-medium), transparent);
  z-index: 0;
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  width: 100%;
  text-align: center;
}

.card-content h3 {
  margin-bottom: var(--spacing-sm);
}

.card-content p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
}

.car-specs {
  display: flex;
  justify-content: space-around;
  margin: var(--spacing-sm) 0;
  flex-wrap: wrap;
}

.car-specs span {
  margin: 0 var(--spacing-xs);
}

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

/* Projects/Fleet Section */
.projects-section {
  background-color: var(--bg-medium);
  position: relative;
}

.neomorphic-tabs {
  margin-top: var(--spacing-lg);
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.tab-button {
  background-color: var(--bg-light);
  border: none;
  padding: var(--spacing-sm) var(--spacing-md);
  margin: 0 var(--spacing-xs);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--text-medium);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  margin-bottom: var(--spacing-xs);
}

.tab-button:hover, .tab-button.active {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn var(--transition-medium);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Resources Section */
.resources-section {
  background-color: var(--bg-light);
}

.resource-links {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0 0;
}

.resource-links li {
  margin-bottom: var(--spacing-xs);
}

.resource-links a {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.resource-links a:hover {
  color: var(--complementary);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-medium);
}

.testimonial-card {
  height: 100%;
}

.testimonial-card .card-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-style: italic;
  position: relative;
  padding: 0 var(--spacing-md);
}

.testimonial-text:before, .testimonial-text:after {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text:before {
  top: -20px;
  left: 0;
}

.testimonial-text:after {
  content: '"';
  bottom: -40px;
  right: 0;
}

.testimonial-author {
  margin-top: var(--spacing-md);
}

.testimonial-author h4 {
  margin-bottom: 0;
}

.testimonial-author p {
  color: var(--text-light);
}

.testimonial-rating {
  color: var(--complementary);
  margin-top: var(--spacing-xs);
  font-size: 1.2rem;
}

/* Partners Section */
.partners-section {
  background-color: var(--bg-light);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  background-color: white;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-sm);
  transition: transform var(--transition-medium);
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.corporate-title {
  margin-top: var(--spacing-lg);
}

/* Events Section */
.events-section {
  background-color: var(--bg-medium);
}

.event-card .card-image {
  height: 300px;
}

.event-date {
  background-color: var(--complementary);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  font-family: var(--heading-font);
}

/* Team Section */
.instructors-section {
  background-color: var(--bg-light);
}

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

.team-card .card-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.team-card .position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-medium);
}

.contact-info h3, .contact-form h3 {
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.info-item {
  display: flex;
  margin-bottom: var(--spacing-sm);
  align-items: flex-start;
}

.info-item i {
  margin-right: var(--spacing-sm);
  width: 24px;
  height: 24px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-item h4 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
}

.map-container {
  margin-top: var(--spacing-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 300px;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-dark);
}

/* Footer Section */
.footer-section {
  background-color: var(--primary);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-section h3, .footer-section h4 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.social-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-newsletter {
  margin-top: var(--spacing-md);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.newsletter-form .neomorphic-input {
  flex: 1;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.newsletter-form .neomorphic-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .neomorphic-btn {
  background-color: var(--complementary);
  color: white;
}

.copyright {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--spacing-md);
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-lg);
}

/* Curved Grid Effects */
.curved-grid {
  position: relative;
}

.curved-grid:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-medium);
  clip-path: ellipse(80% 60% at 50% 100%);
  z-index: -1;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(58, 87, 232, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(58, 87, 232, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 87, 232, 0); }
}

.animated-float {
  animation: float 5s ease-in-out infinite;
}

.animated-pulse {
  animation: pulse 2s infinite;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-section {
    padding: 150px 0 80px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0 0 var(--spacing-sm) 0;
  }
  
  .tab-button {
    margin-bottom: var(--spacing-xs);
  }
  
  .card-image {
    height: 180px;
  }
  
  .info-item {
    flex-direction: column;
  }
  
  .info-item i {
    margin-bottom: var(--spacing-xs);
  }
  
  .newsletter-form .neomorphic-input,
  .newsletter-form .neomorphic-btn {
    width: 100%;
  }
  
  .event-card .card-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .navbar-brand h1 {
    font-size: 1.5rem;
  }
  
  .card-image {
    height: 150px;
  }
  
  .partner-logo {
    height: 80px;
  }
  
  .team-card .card-image {
    width: 180px;
    height: 180px;
  }
}

/* Scroll Dependent Effects */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Additional Styles for Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-top: var(--spacing-xs);
  position: relative;
  padding-right: 20px;
}

.read-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  right: -5px;
}

/* Location and Contact Icons */
.location-icon, .email-icon, .phone-icon, .hours-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: var(--spacing-sm);
  position: relative;
}

.location-icon:before, .email-icon:before, .phone-icon:before, .hours-icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

.location-icon:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-geo-alt" viewBox="0 0 16 16"><path d="M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A31.493 31.493 0 0 1 8 14.58a31.481 31.481 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94zM8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10z"/><path d="M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/></svg>');
}

.email-icon:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-envelope" viewBox="0 0 16 16"><path d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z"/></svg>');
}

.phone-icon:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-telephone" viewBox="0 0 16 16"><path d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"/></svg>');
}

.hours-icon:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clock" viewBox="0 0 16 16"><path d="M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71V3.5z"/><path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0z"/></svg>');
}