:root {
  --primary-color: #1a73e8;
  --secondary-color: #34a853;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #202124;
  --text-light: #5f6368;
  --border-color: #dadce0;
  --hover-bg: #f1f3f4;
  --success-color: #34a853;
  --danger-color: #ea4335;
  --warning-color: #fbbc04;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navigation-bar {
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--primary-color);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
}

.header-clock {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
}

.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

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

.btn-primary:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.features-section,
.services-section,
.latest-posts-section,
.blog-posts-section,
.values-section,
.team-section,
.achievements-section {
  padding: 80px 0;
}

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

.feature-card,
.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover,
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon,
.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
}

.feature-card h3,
.value-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p,
.value-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.about-preview-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.about-preview-grid,
.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  align-items: center;
}

.about-preview-image img,
.about-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-preview-content h2,
.about-intro-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.about-preview-content p,
.about-intro-content p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.service-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-item h3 {
  font-size: 24px;
  padding: 25px 25px 15px;
  color: var(--text-dark);
}

.service-item p {
  padding: 0 25px 25px;
  color: var(--text-light);
  line-height: 1.8;
}

.question-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.question-box {
  text-align: center;
  color: var(--white);
}

.question-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.question-box p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-ask-question {
  padding: 14px 32px;
  background: var(--white);
  color: var(--primary-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ask-question:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.posts-preview-grid,
.blog-posts-grid,
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.post-preview-card,
.blog-post-card,
.related-post-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.post-preview-card:hover,
.blog-post-card:hover,
.related-post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.post-preview-card img,
.blog-post-card img,
.related-post-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-preview-content,
.post-card-content {
  padding: 25px;
}

.post-preview-content h3,
.post-card-content h2,
.related-post-card h3 {
  margin-bottom: 15px;
}

.post-preview-content h3 a,
.post-card-content h2 a,
.related-post-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.post-preview-content h3 a:hover,
.post-card-content h2 a:hover,
.related-post-card h3 a:hover {
  color: var(--primary-color);
}

.post-preview-content p,
.related-post-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.read-more,
.btn-read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.read-more:hover,
.btn-read-more:hover {
  gap: 12px;
}

.post-date,
.post-category,
.reading-time,
.post-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.post-image {
  position: relative;
}

.post-image .post-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
}

.view-all-posts {
  text-align: center;
  margin-top: 50px;
}

.page-header-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 20px;
  opacity: 0.95;
}

.about-intro-section {
  padding: 80px 0;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.8;
}

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

.team-member-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.team-member-card h3 {
  font-size: 24px;
  padding: 25px 20px 10px;
  color: var(--text-dark);
}

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

.team-bio {
  color: var(--text-light);
  line-height: 1.8;
  padding: 0 20px 25px;
}

.achievements-section {
  background: var(--light-bg);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.achievement-item {
  padding: 30px;
}

.achievement-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.achievement-item p {
  color: var(--text-light);
  font-size: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin: 50px 0;
}

.contact-info-block,
.contact-form-block {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-info-block h2,
.contact-form-block h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

.contact-details a:hover {
  color: var(--primary-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.checkbox-group a {
  color: var(--primary-color);
}

.btn-submit {
  padding: 14px 32px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-post-article {
  padding: 50px 0;
}

.post-header {
  margin-bottom: 40px;
}

.post-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.back-to-blog {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.back-to-blog:hover {
  gap: 12px;
}

.post-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-meta-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.post-featured-image {
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

.lead-paragraph {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.post-content h2 {
  font-size: 32px;
  margin: 40px 0 20px;
  color: var(--text-dark);
}

.post-content h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  margin: 20px 0 20px 30px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-footer {
  max-width: 800px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.post-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.tag-label {
  font-weight: 600;
  color: var(--text-dark);
}

.tag {
  padding: 6px 16px;
  background: var(--light-bg);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  transition: var(--transition);
}

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

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

.main-footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-column p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 10px;
}

.company-reg {
  font-size: 14px;
  margin-top: 15px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 30px;
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
}

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

.cookie-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.cookie-content p {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--primary-color);
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn.accept-all {
  background: var(--primary-color);
  color: var(--white);
}

.cookie-btn.accept-all:hover {
  background: #1557b0;
}

.cookie-btn.customize {
  background: var(--light-bg);
  color: var(--text-dark);
}

.cookie-btn.customize:hover {
  background: var(--hover-bg);
}

.cookie-btn.reject {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.cookie-btn.reject:hover {
  background: var(--light-bg);
}

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

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

.modal-content {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-content h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.modal-content.thank-you {
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
}

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

@media (max-width: 968px) {
  .nav-links {
    gap: 20px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .about-preview-grid,
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .post-title {
    font-size: 32px;
  }
  
  .post-content {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-section {
    height: 500px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid,
  .services-grid,
  .posts-preview-grid,
  .blog-posts-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .page-title {
    font-size: 32px;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}