:root {
  /* Color Palette */
  --primary-color: #4e54c8;
  --primary-dark: #3a3f99;
  --primary-light: #8f94fb;
  --secondary-color: #00b8a9;
  --secondary-dark: #008e82;
  --secondary-light: #57e5d9;
  --accent-color: #ff6b6b;
  --accent-dark: #d14a4a;
  --accent-light: #ff9292;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  --gradient-dark: linear-gradient(135deg, rgba(35, 37, 58, 0.95) 0%, rgba(65, 67, 106, 0.95) 100%);
  --gradient-light: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 250, 0.9) 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  
  /* Glassmorphism */
  --glass-background: rgba(255, 255, 255, 0.15);
  --glass-border: 1px solid rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  --glass-blur: blur(12px);
  
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --border-radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-inset: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

.section {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: var(--spacing-md);
}

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

.mb-5 {
  margin-bottom: var(--spacing-xl);
}

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

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

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

/* Glassmorphism */
.glassmorphism {
  background: var(--glass-background);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  transition: var(--transition-medium);
}

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

/* Buttons & Inputs */
.btn, button, input[type='submit'] {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:after, button:after, input[type='submit']:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
  z-index: -1;
}

.btn:hover:after, button:hover:after, input[type='submit']:hover:after {
  transform: translate(-50%, -50%) scale(1);
}

.btn:focus, button:focus, input[type='submit']:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(78, 84, 200, 0.25);
}

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

.btn-secondary, .btn-secondary:hover {
  background: var(--gradient-secondary);
  color: white;
}

.btn-accent, .btn-accent:hover {
  background: var(--gradient-accent);
  color: white;
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

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

.btn-outline-primary:hover {
  background: rgba(78, 84, 200, 0.1);
  color: var(--primary-dark);
}

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

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

.morphing-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.morphing-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.morphing-btn:hover:before {
  left: 100%;
}

.morphing-input {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(78, 84, 200, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  transition: var(--transition-fast);
  width: 100%;
}

.morphing-input:focus {
  background: white;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.15);
  outline: none;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-fast);
  background-color: #c3cfe2;
}
.hero-overlay .container{
  padding-top: 150px;
}
.navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.navbar-brand:hover {
  color: white;
  opacity: 0.9;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Header on scroll */
.header.scrolled {
  background: var(--gradient-dark);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 0;
  margin-bottom: var(--spacing-lg);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* Parallax Sections */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: white;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 0;
}

.parallax-section .container {
  position: relative;
  z-index: 1;
}

/* Geschiedenis (History) Section */
.geschiedenis-section {
  background-color: #f8f9fa;
}

.geschiedenis-content {
  padding: var(--spacing-md);
}

.timeline-container {
  position: relative;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  z-index: 2;
}

.timeline-dot::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 10px);
  background: var(--primary-light);
}

.timeline-item:last-child .timeline-dot::after {
  display: none;
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Prijzen (Pricing) Section */
.prijzen-section {
  position: relative;
  background-color: #f0f0f5;
}

.pricing-card {
  height: 100%;
  position: relative;
  transition: var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid var(--primary-light);
}

.pricing-card .card-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-weight: bold;
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent-color);
  color: white;
  padding: 5px 30px;
  font-size: 0.875rem;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 10;
}

/* Projecten (Projects) Section */
.projecten-section {
  background-color: #fff;
}

.custom-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.project-card {
  flex: 1;
  margin: 0 1rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-medium);
  opacity: 0.7;
  transform: scale(0.9);
  display: flex;
  flex-direction: column;
}

.project-card.active {
  opacity: 1;
  transform: scale(1);
}

.project-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.card-content {
  padding: var(--spacing-md);
}

.project-stats {
  display: flex;
  justify-content: space-around;
  margin-top: var(--spacing-md);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-text {
  font-size: 0.875rem;
  color: #666;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

.prev-btn, .next-btn, .prev-testimonial, .next-testimonial {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover, .prev-testimonial:hover, .next-testimonial:hover {
  background: var(--primary-color);
  color: white;
}

/* Externe Bronnen (External Resources) Section */
.externe-bronnen-section {
  background-color: #f8f9fa;
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.resource-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.resource-card .btn {
  align-self: flex-start;
}

/* Carriere (Careers) Section */
.carriere-section {
  position: relative;
  color: white;
}

.career-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.career-card .card-body {
  display: flex;
  flex-direction: column;
}

.career-card .card-image {
  height: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.career-card h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
}

.badge-primary {
  background-color: var(--primary-color);
  color: white;
}

.badge-info {
  background-color: var(--secondary-color);
  color: white;
}

.location {
  font-size: 0.875rem;
  color: #666;
  margin-left: auto;
}

/* Gemeenschap (Community) Section */
.gemeenschap-section {
  background-color: #fff;
}

.community-content {
  padding: var(--spacing-md) 0;
}

.community-stats {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}

.testimonial-slider {
  position: relative;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-item.active {
  display: flex;
  opacity: 1;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.testimonial-content {
  flex: 1;
}

.testimonial-author h5 {
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

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

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin: 0 1rem;
}

/* Contact Section */
.contact-section {
  position: relative;
  color: white;
}

.contact-info {
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: white;
}

.contact-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-social {
  margin-top: 2rem;
}

.contact-social h4 {
  margin-bottom: 1rem;
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.social-links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.contact-form {
  height: 100%;
}

.contact-form h3 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: white;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Section */
.footer-section {
  background: var(--gradient-dark);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-info h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter {
  margin-top: 2rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-newsletter form {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

.footer-newsletter button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-newsletter button:hover {
  background: var(--primary-dark);
}

.copyright-row {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Success Page */
.success-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.success-content {
  max-width: 600px;
  text-align: center;
  padding: 3rem;
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

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

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-md);
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .timeline-container {
    margin-top: var(--spacing-lg);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .community-stats {
    flex-wrap: wrap;
  }
  
  .community-stats .stat {
    width: 50%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .timeline-dot {
    width: 15px;
    height: 15px;
    top: 7px;
  }
  
  .timeline-dot::after {
    left: 7px;
  }
  
  .testimonial-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
  }
  
  .contact-item i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .footer-newsletter form {
    flex-direction: column;
  }
  
  .footer-newsletter input {
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
  }
  
  .footer-newsletter button {
    border-radius: var(--border-radius-md);
    width: 100%;
    padding: 0.75rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .community-stats .stat {
    width: 100%;
  }
}

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-up {
  animation: slideInUp 0.8s ease forwards;
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-right: 20px;
  transition: var(--transition-fast);
}

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

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

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

/* Icon Placeholders */
.icon-location, .icon-phone, .icon-email {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%238f94fb' d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%238f94fb' d='M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%238f94fb' d='M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z'%3E%3C/path%3E%3C/svg%3E");
}
.hhh h4,.hhh h2,.hhh p{
  color: #333 !important;
}