/* Blog News Section */
.blog-news {
  background: #f8fafc;
  padding: 60px 0 100px 0;
}
.blog-news h2 {
  color: #379BCD;
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.blog-news ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-news li {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(55,155,205,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.blog-news a {
  color: #256fa1;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.08em;
  margin-bottom: 8px;
}
.blog-news a:hover {
  color: #379BCD;
  text-decoration: underline;
}
.blog-news h4 {
  padding-bottom: 20px;
}
.blog-news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(55,155,205,0.08);
  margin-bottom: 18px;
}
.blog-news-img {
  width: 100%;
  height: auto;
  max-height: 215px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 8px;
}
.blog-news-date {
  font-size: 0.95em;
  color: #718096;
  margin-bottom: 6px;
}
.blog-news-title {
  font-weight: 600;
  color: #256fa1;
  font-size: 1.08em;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-news-title:hover {
  color: #379BCD;
  text-decoration: underline;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1rem;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 32px;
  margin-bottom: 0;
  justify-items: center;
  flex-wrap: unset;
  flex-direction: unset;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.feature-item i {
  font-size: 2.2rem;
  color: #379BCD;
  margin-bottom: 8px;
}
.feature-item h4 {
  font-size: 2.1rem;
  margin: 0 0 4px 0;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
  text-align: center;
}
.feature-item p {
  color: #333;
  font-size: 1.05rem;
  margin: 0;
  text-align: center;
}
@media (max-width: 600px) {
  .about-features {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
  .blog-news {
    padding: 70px 8px 0 8px;
    border-radius: 8px;
  }
  .blog-news h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .blog-news li {
    margin-bottom: 0;
    padding: 12px;
    border-radius: 10px;
    gap: 8px;
  }
  .blog-news a {
    font-size: 1rem;
    padding: 0;
  }
}
.alt-btn i {
  font-size: 2rem !important;
}
.contact-page {
  background: #111B21;
}
.alt-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 80px;
}
.alt-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.whatsapp-icon-big {
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.alt-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.alt-desc {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.alt-btn {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #25D366 0%, #1ebe5d 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.18);
  font-size: 1.15rem;
  padding: 16px 32px;
  margin-top: 10px;
  transition: background 0.3s, box-shadow 0.3s;
  border: none;
}
.alt-btn:hover {
  background: #20b656;
  box-shadow: 0 8px 32px rgba(37,211,102,0.22);
}
.alt-qrcode {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 220px;
}
.alt-qrcode .qrcode-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.alt-qrcode .qrcode-instruction {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
.contact-page {
  background: #111B21;
  padding: 120px 0;
}
.contact-content.whatsapp-grid {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.10);
  padding: 40px 32px;
  gap: 0;
}
.whatsapp-card {
  background: #25D366;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(55,155,205,0.08);
  padding: 40px 32px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.whatsapp-card h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
}
.whatsapp-card p {
  color: #e9f9f1;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.whatsapp-number {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.whatsapp-number i {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 8px;
}
.btn-success.btn-large {
  background: #fff;
  color: #25D366;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.10);
  margin-top: 18px;
}
.btn-success.btn-large:hover {
  background: #e9f9f1;
  color: #25D366;
}
.whatsapp-qrcode-box.only-desktop {
  background: #e9f9f1;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.08);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
}
.qrcode-title {
  color: #25D366;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.whatsapp-qrcode {
  width: 180px;
  height: 180px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-sizing: border-box;
}
.qrcode-instruction {
  color: #379BCD;
  font-size: 1rem;
  margin-bottom: 0;
}
.only-desktop {
  display: block;
}
body.menu-open {
  overflow: hidden;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(60, 204, 240, 0.3);
}
.btn-secondary {
  background: #25d366;
  color: white;
}
.btn-secondary:hover {
  background: #20b656;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.btn-outline {
  background: transparent;
  border: 2px solid #379BCD;
  color: #379BCD;
}
.btn-outline:hover {
  background: #379BCD;
  color: white;
  transform: translateY(-2px);
}
.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}
.whatsapp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.whatsapp-box {
  background: #e9f9f1;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.08);
}
.whatsapp-box h3 {
  color: #25D366;
  margin-bottom: 12px;
}
.mvv-card.whatsapp-card {
  background: #25D366;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(55,155,205,0.08);
  padding: 32px 24px;
  max-width: 420px;
  margin: 0 auto;
}
.mvv-card .btn-success {
  background: #fff;
  color: #25D366;
  border: none;
}
.mvv-card .btn-success:hover {
  background: #e6e6e6;
  color: #25D366;
}
.mvv-card .whatsapp-number i {
  color: #fff;
}
.mvv-card .qrcode-title,
.mvv-card .qrcode-instruction {
  color: #fff;
}
.services-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .services-categories {
    grid-template-columns: 1fr;
  }
  .whatsapp-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    gap: 40px;
    margin-top: 24px;
  }
  .feature-item i {
    font-size: 1.7rem;
  }
  .feature-item h4 {
    font-size: 1.3rem;
  }
  .feature-item p {
    font-size: 0.95rem;
  }
  .blog-news ul {
    grid-template-columns: 1fr;
    gap: 16px;
    background: #f8fafc;
    padding: 0px 0 100px 0;
  }
}
.service-category {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(55,155,205,0.08);
  padding: 32px 24px;
}
.service-category h2 {
  color: #379BCD;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.service-category ul {
  padding-left: 18px;
}
.service-category li {
  margin-bottom: 12px;
  color: #334155;
  line-height: 1.6;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.navbar {
  padding: 1rem 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand .logo {
  height: 40px;
  width: auto;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .nav-toggle {
    display: flex !important;
  }
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 96vw;
    max-width: 400px;
    min-width: 220px;
    height: auto;
    background: #fff;
    box-shadow: 0 8px 32px rgba(55,155,205,0.10);
    border-radius: 0 0 16px 16px;
    padding: 1.5rem 1.2rem;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: block;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: none;
  }
  .contact-content.whatsapp-grid {
    flex-direction: column;
    padding: 24px 8px;
    box-shadow: none;
    border-radius: 12px;
  }
  .whatsapp-card {
    margin-bottom: 24px;
    padding: 32px 16px;
    border-radius: 12px;
  }
  .whatsapp-qrcode-box.only-desktop {
    margin-left: 0;
    padding: 24px 8px;
    border-radius: 12px;
  }
  .only-desktop {
    display: none !important;
  }
  .alt-contact {
    display: block;
    padding: 24px 8px;
    box-shadow: none;
    border-radius: 12px;
  }
  .alt-card {
    margin-bottom: 0;
    padding: 32px 16px;
    border-radius: 12px;
    min-width: 0;
    max-width: 100%;
  }
  .alt-qrcode {
    display: none !important;
  }
  .nav-list .btn-primary {
    width: 100%;
    margin: 1rem 0 0 0;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
  .footer-content {
    text-align: center;
  }
  .footer-section {
    text-align: center;
  }
  .footer-links {
    text-align: center;
  }
  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none !important;
  }
  .alt-qrcode {
    min-width: 50%;
  }
  .nav-menu {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    left: 0;
    transition: none;
  }
  .nav-toggle {
    display: none;
  }
  .nav-list {
    flex-direction: row;
    padding: 0;
    gap: 2rem;
  }
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .about-text, .about-image {
    width: 100%;
    max-width: 100%;
  }
  .nav-menu {
    display: block;
  }
  .nav-toggle {
    display: none;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .feature-item {
    flex: 1;
  }
}
.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover {
  color: #379BCD;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #379BCD;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.bar {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
  border-radius: 3px;
}
.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
.hero {
  /*background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);*/
  color: white;
  padding: 210px 0 180px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a7499 0%, #2B7CB3 100%);
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}
.hero .container, .hero-content {
  position: relative;
  z-index: 2;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: 1;
}
.hero-content {
  /*position: relative;
  z-index: 2;*/
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.services {
  padding: 80px 0;
  background: #f8fafc;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.service-icon i {
  font-size: 2rem;
  color: white;
}
.service-title {
  font-size: 1.5rem;
  color: #1a202c;
  margin-bottom: 1rem;
}
.service-description {
  color: #718096;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
}
.service-features i {
  color: #25d366;
  font-size: 0.9rem;
}
.about {
  padding: 80px 0;
  background: white;
}
.about-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
.about-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 1.1rem;
  color: #718096;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.about-image {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.cta {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.footer {
  background: #1a202c;
  color: white;
  padding: 100px 0 60px;
}
.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #379BCD;
}
.footer-contact {
  list-style: none;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #a0aec0;
  font-size: 0.95rem;
}
.footer-contact i {
  color: #379BCD;
  width: 16px;
}
.footer-contact a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #379BCD;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2d3748;
  color: #a0aec0;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #379BCD;
  color: white;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  color: #a0aec0;
  font-size: 0.9rem;
  margin: 0;
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #379BCD;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(55, 155, 205, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}
.back-to-top:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}
.back-to-top.show {
  display: flex;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content {
    grid-template-columns: 2fr 1fr;
  }
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .service-card {
    text-align: left;
  }
  .service-icon {
    margin: 0 0 1.5rem 0;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  .hero-title {
    font-size: 4rem;
  }
  .section-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }
  .page-subtitle {
    font-size: 1.1rem;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    flex-direction: column;
    text-align: center;
    padding: 0;
    margin-left: 60px;
  }
  .timeline-year {
    width: 100px;
    margin-bottom: 20px;
  }
  .timeline-year h3 {
    font-size: 1.2rem;
    padding: 12px 16px;
  }
  .timeline-text,
  .timeline-item:nth-child(even) .timeline-text {
    border-left: 4px solid #379BCD;
    border-right: none;
    margin-top: 20px;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mvv-card {
    padding: 30px;
  }
  .footer-content {
    text-align: center;
  }
  .footer-section {
    text-align: center;
  }
  .footer-links {
    text-align: center;
  }
  .content-wrapper {
    padding: 40px 18px;
  }
  .glossary-grid {
    grid-template-columns: 1fr;
  }
  .data-collection {
    grid-template-columns: 1fr;
  }
  .contact-box {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .page-header {
    padding: 60px 0 40px;
  }
  .blog-news ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-title {
    font-size: 1.8rem;
  }
  .timeline-section {
    padding: 60px 0;
  }
  .mvv-section {
    padding: 60px 0;
  }
  .privacy-content {
    padding: 60px 0;
  }
  .content-wrapper {
    padding: 18px 6px;
  }
  .timeline-content {
    margin-left: 40px;
  }
}
.page-header {
  background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
  color: white;
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-title, .page-subtitle {
  color: #fff;
}
.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.timeline-section {
  padding: 80px 0 40px 0;
  background: #f8fafc;
}
.timeline {
  position: relative;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-year {
  width: 120px;
  text-align: center;
  z-index: 2;
}
.timeline-year h3 {
  background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(60, 204, 240, 0.3);
}
.timeline-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 50px;
}
.timeline-item:nth-child(even) .timeline-content {
  flex-direction: row-reverse;
  text-align: right;
}
.timeline-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.timeline-icon i {
  font-size: 2rem;
  color: #379BCD;
}
.timeline-text {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #379BCD;
}
.timeline-item:nth-child(even) .timeline-text {
  border-left: none;
  border-right: 4px solid #379BCD;
}
.timeline-text h4 {
  color: #379BCD;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.timeline-text p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 15px;
}
.timeline-text p:last-child {
  margin-bottom: 0;
}
.mvv-section {
  padding: 40px 0 80px 0;
  background: white;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.mvv-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #379BCD;
}
.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.mvv-icon i {
  font-size: 2rem;
  color: white;
}
.mvv-card h3 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 20px;
}
.mvv-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}
.privacy-content {
  padding: 80px 0;
  background: #f8fafc;
}
.content-wrapper {
  margin: 0 auto;
  background: white;
  padding: 80px 80px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.privacy-intro {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e2e8f0;
}
.privacy-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}
.privacy-section {
  margin-bottom: 50px;
}
.privacy-section h2 {
  color: #1e293b;
  font-size: 2rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid #379BCD;
}
.privacy-section h3 {
  color: #334155;
  font-size: 1.4rem;
  margin: 30px 0 15px;
}
.privacy-section h4 {
  color: #379BCD;
  font-size: 1.2rem;
  margin: 20px 0 10px;
}
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.glossary-item {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #379BCD;
}
.glossary-item h4 {
  color: #1e293b;
  margin-bottom: 10px;
}
.glossary-item p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}
.privacy-list {
  list-style: none;
  margin: 20px 0;
}
.privacy-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  color: #475569;
  line-height: 1.7;
  border-bottom: 1px solid #e2e8f0;
}
.privacy-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #379BCD;
  font-weight: bold;
  font-size: 1.2rem;
}
.privacy-list li:last-child {
  border-bottom: none;
}
.data-collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}
.data-category {
  background: #f8fafc;
  padding: 30px;
  border-radius: 10px;
  border-top: 4px solid #379BCD;
}
.data-category h4 {
  color: #1e293b;
  margin-bottom: 20px;
}
.data-category ul {
  list-style: none;
}
.data-category li {
  padding: 8px 0;
  color: #64748b;
  position: relative;
  padding-left: 20px;
}
.data-category li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #379BCD;
  font-weight: bold;
}
.contact-box {
  background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  margin: 30px 0;
}
.contact-box h4 {
  color: white;
  margin-bottom: 20px;
}
.contact-box p,
.contact-box li {
  color: rgba(255, 255, 255, 0.9);
}
.contact-box a {
  color: white;
  text-decoration: underline;
}
.contact-box ul {
  list-style: none;
  margin-top: 15px;
}
.contact-box li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.contact-box li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: white;
}
.privacy-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid #e2e8f0;
  margin-top: 50px;
}
.privacy-footer p {
  font-size: 1.1rem;
  color: #379BCD;
  font-weight: 600;
}
.nav-link.active {
  color: #379BCD !important;
  font-weight: 600;
}
.nav-list {
  align-items: center;
}
.nav-list .btn-primary {
  font-weight: 500;
  border-radius: 8px;
  margin-left: 0;
  box-shadow: none;
  transition: background 0.3s;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
}
.btn-large,
.nav-list .btn-primary {
  padding: 12px 20px !important;
  min-height: 40px !important;
  height: auto !important;
}
.service-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 28px;
  background: #379BCD;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(55,155,205,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.service-btn:hover {
  background: #256fa1;
  box-shadow: 0 4px 16px rgba(55,155,205,0.18);
}
.solutions-hub {
  background: linear-gradient(135deg, #f8fafc 0%, #e9f9f1 100%);
  padding: 90px 0 90px 0;
  text-align: center;
}
.solutions-hub .section-title {
  font-size: 2.2rem;
  color: #379BCD;
  margin-bottom: 38px;
  font-weight: 700;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}
.solution-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(55,155,205,0.10);
  padding: 38px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: #1a202c;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.solution-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(55,155,205,0.18);
}
.solution-card i {
  font-size: 2.6rem;
  color: #379BCD;
  margin-bottom: 12px;
}
.solution-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.solution-card p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 0;
}
.solution-btn {
  margin-top: 18px;
  background: linear-gradient(90deg, #379BCD 0%, #25D366 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  box-shadow: 0 4px 16px rgba(55,155,205,0.10);
  transition: background 0.2s;
  display: inline-block;
}
.solution-card:hover .solution-btn {
  background: #25D366;
}
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
