:root {
--bg-color: #fbfbfa;
--text-main: #181614;
--text-muted: #383838;
--accent: #2557ff;
--card-bg: #ffffff;
--border: #f0ece7;
--shadow: rgba(24, 22, 20, 0.03);
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: #FFFFFA;
color: var(--text-main);
min-height: 100vh;
display: flex;
flex-direction: column;
-webkit-font-smoothing: antialiased;
}

a, a:visited, a:hover, a:active {
  color: inherit;
}

.container {
width: 100%;
max-width: 98%;
margin: 0 auto;
padding: 1rem;
}

header {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 0rem;
margin-bottom: 0.5rem;
}

.logo {
font-size: 1.55rem;
font-weight: 700;
letter-spacing: -0.02em;
}

.logo a {
  color: var(--text-main);
  text-decoration: none;
}

.logo span {
color: #0038F0;
}

.status-badge {
background-color: #eef2ff;
color: #000000;
padding: 0.5rem 1rem;
border-radius: 99px;
font-size: 1rem;
font-weight: 500;
border: 1px solid #e0e7ff;
margin-bottom: 1rem;
}

.hero {
margin-bottom: 2rem;
}

.hero h1 {
font-size: 1.55rem;
font-weight: 600;
letter-spacing: -0.03em;
line-height: 1.15;
margin-bottom: 1.5rem;
}

.hero p {
font-size: 1.2rem;
color: var(--text-muted);
line-height: 1.6;
font-weight: 300;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 5rem;
}

.feature-card {
background: var(--card-bg);
border: 1px solid var(--border);
padding: 2.5rem;
border-radius: 16px;
box-shadow: 0 4px 20px var(--shadow);
transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
transform: translateY(-4px);
border-color: #dcd7cf;
}

.feature-card .icon {
font-size: 1.5rem;
margin-bottom: 1.5rem;
display: inline-block;
}

.feature-card h2 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.75rem;
letter-spacing: -0.01em;
}

.feature-card p {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.6;
font-weight: 300;
}

.cta-section {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.cta-text h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.2rem;
}

.cta-text p {
color: var(--text-muted);
font-weight: 300;
padding: 1rem;
text-align: left;
}

.cta-button {
display: inline-block;
background-color: var(--text-main);
color: #ffffff;
text-decoration: none;
padding: 1rem 2.2rem;
border-radius: 12px;
font-size: 0.95rem;
font-weight: 500;
transition: background-color 0.2s;
}

.cta-button:hover {
background-color: var(--accent);
}

footer {
margin-top: 25px;
border-top: 1px solid var(--border);
padding: 2rem 0;
font-size: 1rem;
color: var(--text-muted);
font-weight: 300;
}

.info {
  position: relative;
  background: #EEF2FF;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  width: 100%;
  margin: 1rem auto;
}

.map-navigation {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  grid-template-rows: 20px auto 20px;
  gap: 6px;
  background: #EEF2FF;
  padding: 6px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  width: 100%;
  margin: 1rem auto;
}

.map-navigation2 {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  grid-template-rows: 20px auto 20px;
  gap: 0px;
  background: #EEF2FF;
  padding: 0px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  width: 100%;
  margin: 1rem auto;
}

.nav-btn {
  background-color: var(--bg-color);
  color: var(--text-main);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.15s ease;
  width: 100%;
  height: 100%;
  text-decoration:none;
}

.nav-up, .nav-down {
  grid-column: 2; 
}

.nav-btn:hover {
  background-color: #A9B7E6;
  border-color: #A9B7E6;
}

.nav-btn:active {
  transform: scale(0.97);
}

.nav-center {
  grid-column: 2;
  grid-line: 2;
  background-color: transparent;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-center a {
  display: block;
  width: 100%;
}

.nav-center img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.link-list {
    text-align: center;
}

.link-list .links {
    display: inline-block;
    text-align: left;
	text-decoration:none;
}

.link-list a {
    text-decoration: none;
}

.link-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
.hero h1 { font-size: 1.55rem; }
.cta-section { flex-direction: column; align-items: center; }
}