:root {
  --primary-color: #032B44;
  --accent-color: #03A9F4;
  --bg-color: #F7F7F7;
  --text-color: #212121;
  --border-color: #CCCCCC;
  --sidebar-width: 280px;
  --content-padding: 61px;
  --section-spacing: 97px;
  --element-spacing: 25px;
  --sidebar-item-spacing: 10px;
}

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

body {
  font-family: 'Merriweather', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 28px 23px;
  overflow-y: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

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

.sidebar .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.sidebar .logo-img {
  max-height: 42px;
  width: auto;
}

.sidebar .site-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.sidebar-nav {
  flex: 1;
}

.sidebar-nav .nav {
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: var(--sidebar-item-spacing);
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.sidebar-nav .nav-link i {
  width: 20px;
}

.sidebar-cta {
  margin-top: 30px;
  margin-bottom: 28px;
}

.sidebar-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 53px;
  height: 53px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  cursor: pointer;
}

.main-content {
  margin-left: var(--sidebar-width);
  padding: var(--content-padding);
  min-height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--element-spacing);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--element-spacing);
}

.btn {
  display: inline-block;
  padding: 13px 25px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #3651d9;
  color: #ffffff;
}

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

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

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

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

.btn-light {
  background-color: #ffffff;
  color: var(--primary-color);
}

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

.btn-lg {
  padding: 13px 37px;
  font-size: 1.1rem;
}

.hero-section {
  padding: 43px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 14px;
  margin-bottom: var(--section-spacing);
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgba(67, 97, 238, 0.2);
  color: #ffffff;
  border-radius: 17px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  color: #ffffff;
}

.hero-lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.hero-stats {
  margin-top: 41px;
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(67, 97, 238, 0.2), rgba(6, 182, 212, 0.2));
  pointer-events: none;
}

.section-header {
  margin-bottom: 63px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
}

.feature-card {
  padding: 41px 33px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 13px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 69px;
  height: 67px;
  margin: 0 auto 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), #06b6d4);
  color: #ffffff;
  border-radius: 10px;
  font-size: 2rem;
}

.feature-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 31px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.7) 100%);
  pointer-events: none;
}

.service-content {
  padding: 32px;
}

.service-icon {
  width: 47px;
  height: 50px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 17px;
}

.service-description {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 19px;
}

.service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #3651d9;
}

.pricing-card {
  position: relative;
  padding: 40px 27px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 11px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 33px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 17px;
  padding: 6px 13px;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 23px;
  font-size: 0.8rem;
  font-weight: 500;
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-plan {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 17px;
}

.pricing-price {
  margin-bottom: 18px;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  font-size: 1rem;
  color: #6c757d;
}

.pricing-description {
  font-size: 0.95rem;
  color: #6c757d;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 31px;
}

.pricing-features li {
  padding: 11px 0;
  font-size: 1rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-features i {
  color: var(--accent-color);
}

.testimonial-card {
  padding: 39px 29px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  height: 100%;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 21px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.author-image {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.author-role {
  font-size: 0.9rem;
  color: #6c757d;
}

.team-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 32px rgba(0, 0, 0, 0.1);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.team-social {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 42px;
  background-color: #ffffff;
  color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

.team-info {
  padding: 32px 22px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.team-role {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.team-bio {
  font-size: 0.95rem;
  color: #6c757d;
}

.stats-section {
  padding: 62px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 12px;
}

.stat-card {
  padding: 27px;
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.faq-section .accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: 13px;
  overflow: hidden;
}

.faq-section .accordion-button {
  background-color: #ffffff;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px 23px;
  border: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  color: #ffffff;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.faq-section .accordion-body {
  padding: 22px 27px;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
}

.cta-section {
  padding: 60px 0;
}

.cta-card {
  padding: 57px 49px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #06b6d4 100%);
  color: #ffffff;
  border-radius: 13px;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 17px;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.integrations-section {
  padding: 61px 0;
}

.integration-logo {
  padding: 30px;
  transition: all 0.3s ease;
}

.integration-logo:hover {
  transform: scale(1.1);
}

.integration-logo i {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.integration-logo:hover i {
  color: var(--accent-color);
}

.integration-logo p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
}

.page-header {
  padding: 61px 0;
  text-align: center;
  margin-bottom: var(--section-spacing);
}

.page-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 21px;
}

.page-description {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.about-content-section img {
  border-radius: 9px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

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

.value-card {
  padding: 42px 31px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  height: 100%;
}

.value-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(67, 97, 238, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 2rem;
}

.value-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 19px;
}

.value-description {
  font-size: 1rem;
  color: #6c757d;
}

.services-detail-section {
  padding: 62px 0;
}

.service-detail-card {
  padding: 42px 30px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 13px;
  height: 100%;
}

.service-detail-icon {
  width: 60px;
  height: 57px;
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 14px;
  font-size: 1.8rem;
}

.service-detail-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-detail-description {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 19px;
}

.service-detail-list {
  list-style: none;
  padding: 0;
}

.service-detail-list li {
  padding: 8px 0;
  font-size: 1rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-detail-list i {
  color: var(--accent-color);
}

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

.contact-info-card {
  padding: 40px 28px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  text-align: center;
  height: 100%;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
}

.contact-info-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 11px;
}

.contact-info-text {
  font-size: 1rem;
  color: #6c757d;
}

.contact-info-text a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

.contact-form-card {
  padding: 52px 40px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
}

.contact-form-title {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
}

.form-label {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.form-control {
  padding: 9px 15px;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.1);
  outline: none;
}

.blog-section {
  padding: 62px 0;
}

.blog-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 29px rgba(0, 0, 0, 0.1);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 12px;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 22px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-content {
  padding: 27px;
}

.blog-meta {
  display: flex;
  gap: 22px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: #6c757d;
}

.blog-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--accent-color);
}

.blog-excerpt {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.blog-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: #3651d9;
}

.article-single {
  margin-bottom: var(--section-spacing);
}

.article-header {
  padding: 57px 0;
  text-align: center;
}

.article-category-badge {
  display: inline-block;
  padding: 8px 17px;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 19px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.article-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 21px;
}

.article-meta {
  display: flex;
  gap: 21px;
  justify-content: center;
  font-size: 1rem;
  color: #6c757d;
}

.article-featured-image {
  margin-bottom: 57px;
}

.article-content {
  padding: 61px 0;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body .lead {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 41px;
}

.article-body h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 39px;
  margin-bottom: 17px;
}

.article-body p {
  margin-bottom: 21px;
}

.article-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 38px;
}

.article-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.article-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  pointer-events: none;
}

.article-quote {
  padding: 42px;
  background-color: var(--bg-color);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  margin: 41px 0;
}

.article-quote blockquote {
  margin: 0;
}

.article-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.article-quote footer {
  font-size: 1rem;
  color: #6c757d;
}

.article-cta {
  padding: 43px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #06b6d4 100%);
  color: #ffffff;
  border-radius: 10px;
  text-align: center;
  margin: 63px 0;
}

.article-cta h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.article-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 27px;
}

.article-footer {
  padding: 41px 0;
  border-top: 1px solid var(--border-color);
}

.article-share h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 21px;
}

.share-buttons {
  display: flex;
  gap: 13px;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 50px;
  background-color: var(--bg-color);
  color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-button:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

.related-articles {
  padding: 59px 0;
}

.blog-card-small {
  display: flex;
  gap: 17px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 27px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-card-content {
  padding: 19px;
  flex: 1;
}

.blog-card-title {
  font-size: 1.2rem;
  margin-bottom: 9px;
}

.blog-card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--accent-color);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

.pricing-comparison {
  padding: 62px 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
}

.comparison-table thead {
  background-color: var(--primary-color);
  color: #ffffff;
}

.comparison-table th {
  padding: 18px;
  font-weight: 600;
  text-align: left;
}

.comparison-table td {
  padding: 13px 21px;
  border-top: 1px solid var(--border-color);
}

.case-studies-section {
  padding: 60px 0;
}

.case-study-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 29px rgba(0, 0, 0, 0.1);
}

.case-study-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.case-study-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.case-study-overlay {
  position: absolute;
  top: 20px;
  left: 23px;
}

.case-study-category {
  padding: 8px 19px;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 22px;
  font-size: 0.85rem;
  font-weight: 500;
}

.case-study-content {
  padding: 43px 32px;
}

.case-study-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 11px;
}

.case-study-client {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.case-study-description {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 31px;
}

.case-study-stats {
  margin-bottom: 27px;
}

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

.case-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.case-stat-label {
  font-size: 0.85rem;
  color: #6c757d;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tag {
  padding: 6px 11px;
  background-color: var(--bg-color);
  color: var(--primary-color);
  border-radius: 17px;
  font-size: 0.85rem;
}

.legal-content-section {
  padding: 58px 0;
}

.legal-content {
  background-color: #ffffff;
  padding: 60px 52px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 42px;
  margin-bottom: 20px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 19px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 25px;
  padding-left: 21px;
}

.legal-content li {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-hero {
  padding: 59px 0;
}

.service-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgba(67, 97, 238, 0.1);
  color: var(--accent-color);
  border-radius: 23px;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-hero-title {
  font-size: 3rem;
  color: var(--primary-color);
}

.service-hero-description {
  font-size: 1.2rem;
  color: #6c757d;
}

.service-features-section {
  padding: 62px 0;
}

.service-feature-card {
  padding: 42px 32px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 11px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 29px rgba(0, 0, 0, 0.1);
}

.service-feature-icon {
  width: 57px;
  height: 62px;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 13px;
  font-size: 1.8rem;
}

.service-feature-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 11px;
}

.service-feature-description {
  font-size: 1rem;
  color: #6c757d;
}

.service-process-section {
  padding: 63px 0;
  background-color: var(--bg-color);
  border-radius: 10px;
}

.process-step {
  text-align: center;
  padding: 31px 19px;
}

.process-step-number {
  width: 59px;
  height: 57px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), #06b6d4);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
}

.process-step-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.process-step-description {
  font-size: 1rem;
  color: #6c757d;
}

.service-pricing-section {
  padding: 62px 0;
}

.service-pricing-card {
  position: relative;
  padding: 43px 29px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  text-align: center;
  height: 100%;
}

.service-pricing-card.featured {
  border: 2px solid var(--accent-color);
}

.service-pricing-plan {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 22px;
}

.service-pricing-price {
  margin-bottom: 27px;
}

.service-pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.service-pricing-features li {
  padding: 7px 0;
  font-size: 1rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-pricing-features i {
  color: var(--accent-color);
}

.footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 61px 0 27px;
  margin-top: var(--section-spacing);
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer .logo-img {
  max-height: 46px;
  width: auto;
}

.footer .site-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 17px;
}

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

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

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

.footer-links a:hover {
  color: #ffffff;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 31px;
}

.footer-copyright {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-content {
    margin-left: 0;
    padding: 39px 30px;
  }

  .hero-title,
  .article-title,
  .page-title,
  .service-hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .main-content {
    padding: 28px 17px;
  }

  .hero-title,
  .article-title,
  .page-title,
  .service-hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .blog-card-small {
    flex-direction: column;
  }

  .blog-card-image {
    width: 100%;
    height: 200px;
  }
}
