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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-left img {
  height: 32px;
  width: auto;
}

.navbar-left span {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  padding: 8px 12px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #1a1a1a;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  padding: 8px 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.dropdown-toggle:hover {
  color: #1a1a1a;
}

.dropdown-toggle img {
  width: 12px;
  object-fit: cover;
}

.quote-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #ffbe40;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.quote-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 190, 64, 0.3);
}

.quote-btn img {
  width: 14px;
  height: 14px;
}

.hero {
  background-color: #fafbfc;
  padding: 120px 0 60px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 16px;
  color: #5a6a7a;
  line-height: 2.2;
  margin-bottom: 8px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffbe40;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 28px;
}

.download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 190, 64, 0.3);
}

.download-btn img {
  width: 14px;
  height: 14px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.features {
  background-color: #e8f0fe;
  padding: 60px 0;
}

.features-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.features-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

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

.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 13px;
  color: #5a6a7a;
  line-height: 1.8;
}

.features-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffbe40;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.features-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 190, 64, 0.3);
}

.comparison {
  padding: 60px 0;
  background-color: #fafbfc;
}

.comparison-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.comparison-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.comparison-table th {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #5a6a7a;
  background-color: #f5f7fa;
  text-align: center;
}

.comparison-table td {
  padding: 12px 20px;
  font-size: 14px;
  color: #4a5568;
  text-align: center;
  border-bottom: 1px solid #f0f2f5;
}

.comparison-table tbody tr:nth-child(odd) td {
  background-color: #fafbfc;
}

.comparison-table tbody tr:nth-child(even) td {
  background-color: white;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table img {
  width: 20px;
  height: 20px;
}

.comparison-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffbe40;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.comparison-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 190, 64, 0.3);
}

.servers {
  padding: 60px 0;
  background-color: #e8f0fe;
}

.servers-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.servers-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 32px;
}

.servers-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  background-color: white;
  padding: 4px;
  border-radius: 10px;
  display: inline-flex;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  color: #5a6a7a;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.tab-btn:hover {
  background-color: #f0f4f8;
}

.tab-btn.active {
  background-color: #1e3a5f;
  color: white;
}

.tab-content {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.servers-table {
  width: 100%;
  border-collapse: collapse;
}

.servers-table th {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #5a6a7a;
  background-color: #f5f7fa;
  text-align: left;
}

.servers-table th:first-child {
  width: 35%;
}

.servers-table th:not(:first-child) {
  text-align: center;
}

.servers-table td {
  padding: 12px 20px;
  font-size: 13px;
  color: #4a5568;
  border-bottom: 1px solid #f0f2f5;
}

.servers-table td:first-child {
  font-weight: 500;
  text-align: left;
}

.servers-table td:not(:first-child) {
  text-align: center;
  color: #4caf50;
  font-weight: 600;
}

.servers-table td:first-child img {
  width: 20px !important;
  height: 20px !important;
  margin-right: 8px;
  vertical-align: middle;
  object-fit: cover;
}

.servers-table tbody tr:nth-child(odd) td {
  background-color: #fafbfc;
}

.servers-table tbody tr:nth-child(even) td {
  background-color: white;
}

.servers-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffbe40;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 32px;
}

.servers-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 190, 64, 0.3);
}

.testimonials {
  padding: 60px 0;
  background-color: #fafbfc;
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a5f;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 0;
  background: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

.testimonial-card p {
  font-size: 13px;
  color: #6b7a8a;
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-card .author {
  display: block;
  font-size: 12px;
  color: #9aa8b8;
  font-weight: 500;
  text-align: right;
  margin-top: auto;
}

.why-vpn {
  padding: 60px 0;
  background-color: #e8f0fe;
}

.why-vpn-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-vpn-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a5f;
  text-align: center;
  margin-bottom: 40px;
}

.why-vpn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-vpn-card {
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.why-vpn-card .icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #f5f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-vpn-card .icon-wrapper img {
  width: 32px;
  height: 32px;
}

.why-vpn-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 12px;
}

.why-vpn-card p {
  font-size: 13px;
  color: #6b7a8a;
  line-height: 1.7;
}

.footer {
  background-color: #e8f0fe;
  padding: 40px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col {
  padding: 60px 0;
}

.footer-col .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-col .logo img {
  width: 36px;
  object-fit: cover;
}

.footer-col .logo span {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
}

.footer-col .contact {
  margin-bottom: 16px;
}

.footer-col .contact p {
  font-size: 13px;
  color: #5a6a7a;
  margin-bottom: 6px;
}

.footer-col .contact a {
  display: block;
  font-size: 13px;
  color: #5a6a7a;
  text-decoration: none;
  margin-bottom: 4px;
}

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

.footer-col .copyright {
  font-size: 12px;
  color: #8a9aaa;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: #5a6a7a;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col .language-select {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.footer-col .language-select span {
  font-size: 13px;
  color: #5a6a7a;
}

.footer-col .language-select img {
  width: 8px;
  object-fit: cover;
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.navbar-right .language-select img {
  width: 10px;
  height: 10px;
  object-fit: cover;
}

.language-select:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background-color: white;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  display: none;
  z-index: 100;
}

.language-dropdown.show {
  display: block;
}

.language-option {
  padding: 8px 12px;
  font-size: 13px;
  color: #5a6a7a;
  cursor: pointer;
  transition: background-color 0.2s;
}

.language-option:hover {
  background-color: #f5f7fa;
}
