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

:root {
  --primary-color: #1e40af;
  --secondary-color: #3b82f6;
  --accent-color: #ef4444;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
}

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

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

.main-header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo-img {
  border-radius: 50%;
  object-fit: cover;
}

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

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

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

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

.hero-banner {
  background: linear-gradient(rgba(30, 64, 175, 0.8), rgba(30, 64, 175, 0.8)), url('images/1.jpg') center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.hero-text-block {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
}

.countdown-block {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-dark);
  text-align: center;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.timer-unit {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  min-width: 120px;
}

.timer-value {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
}

.timer-label {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 10px;
}

.features-area {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

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

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

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

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-light);
}

.testimonials-section {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-button-alt {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s;
}

.cta-button-alt:hover {
  transform: scale(1.05);
}

.main-footer {
  background-color: var(--text-dark);
  color: 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 h3 {
  margin-bottom: 20px;
  color: white;
}

.footer-column p {
  line-height: 1.8;
  color: #d1d5db;
}

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

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-reg {
  margin-top: 15px;
  font-size: 14px;
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  padding: 25px;
  z-index: 9999;
  transition: bottom 0.5s ease-in-out;
}

.cookie-consent.show {
  bottom: 0;
}

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

.cookie-text h4 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.cookie-text p {
  color: var(--text-light);
  font-size: 14px;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cookie-btn:hover {
  opacity: 0.9;
}

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

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

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

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

.page-title {
  font-size: 42px;
  margin-bottom: 15px;
}

.page-description {
  font-size: 18px;
  opacity: 0.95;
}

.blog-content {
  padding: 80px 0;
}

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

.blog-post-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

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

.post-content {
  padding: 30px;
}

.post-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.post-meta {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.post-excerpt {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more-btn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s;
}

.read-more-btn:hover {
  color: var(--secondary-color);
}

.about-story {
  padding: 80px 0;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.story-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
  font-size: 18px;
}

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

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

.team-member-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

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

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

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

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

.team-member-card p {
  padding: 0 20px 25px;
  color: var(--text-light);
  line-height: 1.6;
}

.values-section {
  padding: 80px 0;
}

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

.value-card {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-light);
  border-radius: 12px;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.stats-section {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
}

.stats-section .section-heading {
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

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

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

.contact-icon {
  font-size: 28px;
  flex-shrink: 0;
}

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

.contact-details p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.contact-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 5px;
}

.reg-info {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 8px;
}

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

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

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

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

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

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

.faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.8;
}

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

.modal-content {
  background-color: white;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
}

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

.modal-content h2 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.modal-close-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.post-single {
  padding-bottom: 80px;
}

.post-hero-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

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

.post-header {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.post-main-title {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.2;
}

.post-meta-info {
  display: flex;
  gap: 20px;
  color: var(--text-light);
  font-size: 14px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
  flex-wrap: wrap;
}

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

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

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

.post-body-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.post-body-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.post-body-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.post-cta {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 60px 0 40px;
}

.post-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.post-cta p {
  margin-bottom: 25px;
  color: var(--text-light);
}

.post-navigation {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.back-to-blog {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.back-to-blog:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-heading {
    font-size: 28px;
  }

  .timer-display {
    gap: 15px;
  }

  .timer-unit {
    min-width: 80px;
    padding: 20px;
  }

  .timer-value {
    font-size: 36px;
  }

  .features-grid,
  .process-timeline,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .post-main-title {
    font-size: 28px;
  }

  .post-body-content {
    font-size: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 32px;
  }
}