:root {
  --hl-primary: #2C3E50;
  --hl-secondary: #3498DB;
  --hl-accent: #E8F4F8;
  --hl-text: #333333;
  --hl-text-light: #666666;
  --hl-bg: #FFFFFF;
  --hl-bg-light: #F8F9FA;
  --hl-border: #E0E0E0;
  --hl-success: #27AE60;
  --hl-shadow: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--hl-text);
  line-height: 1.6;
  background-color: var(--hl-bg);
}

.hl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hl-header {
  background-color: var(--hl-bg);
  box-shadow: 0 2px 10px var(--hl-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hl-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.hl-logo img {
  height: 60px;
  width: auto;
}

.hl-navigation {
  display: flex;
}

.hl-nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.hl-nav-list a {
  color: var(--hl-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.hl-nav-list a:hover,
.hl-nav-list a.hl-active {
  color: var(--hl-secondary);
}

.hl-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hl-mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--hl-primary);
  transition: 0.3s;
}

.hl-hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--hl-primary) 0%, var(--hl-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hl-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hl-hero-content {
  position: relative;
  z-index: 1;
}

.hl-hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hl-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hl-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hl-btn-primary,
.hl-btn-secondary {
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.hl-btn-primary {
  background-color: var(--hl-secondary);
  color: white;
  border: 2px solid var(--hl-secondary);
}

.hl-btn-primary:hover {
  background-color: transparent;
  color: white;
}

.hl-btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hl-btn-secondary:hover {
  background-color: white;
  color: var(--hl-primary);
}

.hl-features,
.hl-timeline,
.hl-countdown,
.hl-cta {
  padding: 80px 0;
}

.hl-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--hl-primary);
}

.hl-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.hl-feature-card {
  background-color: var(--hl-bg-light);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hl-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--hl-shadow);
}

.hl-feature-icon {
  color: var(--hl-secondary);
  margin-bottom: 20px;
}

.hl-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--hl-primary);
}

.hl-timeline {
  background-color: var(--hl-bg-light);
}

.hl-timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hl-timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--hl-secondary);
  transform: translateX(-50%);
}

.hl-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.hl-timeline-year {
  width: 100px;
  text-align: right;
  padding-right: 30px;
  font-weight: 700;
  color: var(--hl-secondary);
  font-size: 1.3rem;
}

.hl-timeline-content {
  flex: 1;
  padding-left: 30px;
  background-color: var(--hl-bg);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px var(--hl-shadow);
}

.hl-timeline-content h3 {
  margin-bottom: 10px;
  color: var(--hl-primary);
}

.hl-countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.hl-countdown-item {
  text-align: center;
  background-color: var(--hl-bg-light);
  padding: 30px;
  border-radius: 8px;
  min-width: 120px;
}

.hl-countdown-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--hl-secondary);
}

.hl-countdown-label {
  font-size: 1rem;
  color: var(--hl-text-light);
  margin-top: 10px;
}

.hl-countdown-info {
  text-align: center;
  font-size: 1.1rem;
  color: var(--hl-text-light);
}

.hl-cta {
  background: linear-gradient(135deg, var(--hl-primary) 0%, var(--hl-secondary) 100%);
  color: white;
  text-align: center;
}

.hl-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hl-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hl-footer {
  background-color: var(--hl-primary);
  color: white;
  padding: 60px 0 20px;
}

.hl-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.hl-footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.hl-footer-col ul {
  list-style: none;
}

.hl-footer-col ul li {
  margin-bottom: 10px;
}

.hl-footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.hl-footer-col a:hover {
  color: white;
}

.hl-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hl-social-links a {
  color: white;
  transition: opacity 0.3s;
}

.hl-social-links a:hover {
  opacity: 0.7;
}

.hl-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hl-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--hl-primary);
  color: white;
  padding: 30px;
  box-shadow: 0 -5px 20px var(--hl-shadow);
  z-index: 10000;
  display: none;
}

.hl-cookie-banner.hl-show {
  display: block;
}

.hl-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hl-cookie-content h3 {
  margin-bottom: 15px;
}

.hl-cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hl-cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.hl-btn-accept {
  background-color: var(--hl-success);
  color: white;
}

.hl-btn-customize {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hl-btn-decline {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hl-cookie-link {
  color: white;
  margin-left: 20px;
}

.hl-page-header {
  background: linear-gradient(135deg, var(--hl-primary) 0%, var(--hl-secondary) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hl-page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hl-about-intro,
.hl-team,
.hl-values,
.hl-blog-content {
  padding: 80px 0;
}

.hl-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hl-about-text h2 {
  color: var(--hl-primary);
  margin-bottom: 20px;
}

.hl-about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.hl-about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 20px var(--hl-shadow);
}

.hl-team {
  background-color: var(--hl-bg-light);
}

.hl-team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: var(--hl-text-light);
}

.hl-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.hl-team-card {
  background-color: var(--hl-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--hl-shadow);
  transition: transform 0.3s;
}

.hl-team-card:hover {
  transform: translateY(-5px);
}

.hl-team-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hl-team-card h3 {
  padding: 20px 20px 10px;
  color: var(--hl-primary);
}

.hl-team-position {
  padding: 0 20px;
  color: var(--hl-secondary);
  font-weight: 600;
}

.hl-team-card p:last-child {
  padding: 10px 20px 20px;
  color: var(--hl-text-light);
}

.hl-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.hl-value-item {
  text-align: center;
  padding: 30px;
}

.hl-value-icon {
  color: var(--hl-secondary);
  margin-bottom: 20px;
}

.hl-value-item h3 {
  margin-bottom: 15px;
  color: var(--hl-primary);
}

.hl-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.hl-blog-card {
  background-color: var(--hl-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--hl-shadow);
  transition: transform 0.3s;
}

.hl-blog-card:hover {
  transform: translateY(-5px);
}

.hl-blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.hl-blog-info {
  padding: 25px;
}

.hl-blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--hl-text-light);
}

.hl-blog-category {
  background-color: var(--hl-accent);
  color: var(--hl-secondary);
  padding: 3px 10px;
  border-radius: 3px;
}

.hl-blog-info h2,
.hl-blog-info h3 {
  margin-bottom: 15px;
}

.hl-blog-info h2 a,
.hl-blog-info h3 a {
  color: var(--hl-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.hl-blog-info h2 a:hover,
.hl-blog-info h3 a:hover {
  color: var(--hl-secondary);
}

.hl-read-more {
  color: var(--hl-secondary);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

.hl-contact-section {
  padding: 80px 0;
}

.hl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.hl-contact-info h2 {
  color: var(--hl-primary);
  margin-bottom: 20px;
}

.hl-contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.hl-contact-icon {
  color: var(--hl-secondary);
  flex-shrink: 0;
}

.hl-contact-details h3 {
  margin-bottom: 10px;
  color: var(--hl-primary);
}

.hl-contact-details a {
  color: var(--hl-text);
  text-decoration: none;
}

.hl-contact-form-wrapper h2 {
  margin-bottom: 30px;
  color: var(--hl-primary);
}

.hl-form-group {
  margin-bottom: 20px;
}

.hl-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--hl-text);
}

.hl-form-group input,
.hl-form-group select,
.hl-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--hl-border);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.hl-form-group input:focus,
.hl-form-group select:focus,
.hl-form-group textarea:focus {
  outline: none;
  border-color: var(--hl-secondary);
}

.hl-checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.hl-checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.hl-checkbox-label a {
  color: var(--hl-secondary);
}

.hl-contact-form button {
  border: none;
  cursor: pointer;
}

.hl-map {
  padding: 80px 0;
  background-color: var(--hl-bg-light);
}

.hl-map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--hl-shadow);
}

.hl-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.hl-modal.hl-show {
  display: flex;
}

.hl-modal-content {
  background-color: white;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hl-modal-header {
  padding: 30px;
  border-bottom: 1px solid var(--hl-border);
  position: relative;
}

.hl-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--hl-text-light);
}

.hl-modal-body {
  padding: 40px 30px;
  text-align: center;
}

.hl-success-icon {
  color: var(--hl-success);
  margin-bottom: 20px;
}

.hl-post {
  background-color: var(--hl-bg);
}

.hl-post-header {
  padding: 60px 0 40px;
}

.hl-post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--hl-text-light);
}

.hl-post-category {
  background-color: var(--hl-accent);
  color: var(--hl-secondary);
  padding: 3px 10px;
  border-radius: 3px;
}

.hl-post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--hl-primary);
}

.hl-post-excerpt {
  font-size: 1.2rem;
  color: var(--hl-text-light);
  line-height: 1.8;
}

.hl-post-featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hl-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hl-post-content h2 {
  color: var(--hl-primary);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
}

.hl-post-content h3 {
  color: var(--hl-primary);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.hl-post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.hl-related-posts {
  background-color: var(--hl-bg-light);
  padding: 80px 0;
}

.hl-back-to-blog {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hl-mobile-toggle {
    display: flex;
  }
  
  .hl-navigation {
    display: none;
  }
  
  .hl-navigation.hl-active {
    display: flex;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background-color: var(--hl-bg);
    box-shadow: 0 5px 10px var(--hl-shadow);
    padding: 20px;
  }
  
  .hl-nav-list {
    flex-direction: column;
    gap: 15px;
  }
  
  .hl-hero-title {
    font-size: 2rem;
  }
  
  .hl-hero-subtitle {
    font-size: 1rem;
  }
  
  .hl-hero-buttons {
    flex-direction: column;
  }
  
  .hl-about-content,
  .hl-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hl-countdown-wrapper {
    flex-wrap: wrap;
  }
  
  .hl-timeline-wrapper::before {
    left: 0;
  }
  
  .hl-timeline-year {
    width: auto;
    text-align: left;
    padding-right: 0;
    padding-bottom: 10px;
  }
  
  .hl-timeline-content {
    padding-left: 0;
  }
  
  .hl-blog-grid {
    grid-template-columns: 1fr;
  }
}