:root {
  --bg-dark: #111111;
  --text-light: #f0e0f7;
  --accent: #09BE7C; 
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

nav a {
  color: var(--text-light);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--accent);
}

.split-container {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.left, .right {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left {
  flex: 1;
  border-right: 2px solid #067a59;
}

.left h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.left p {
  max-width: 450px;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cta {
  width: 100px;
  background-color: var(--accent);
  color: #111;
  padding: 0.9rem 2.5rem;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-top: 5px;
  text-align: center;
}
.cta:hover {
  background-color: #067a59; 
}

.right {
  flex: 1;
  background-color: #1f1f1f;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card {
  background-color: #2e2e2e;
  border-radius: 12px;
  padding: 1.8rem 2rem;
  max-width: 320px;
  box-shadow: 0 0 12px var(--accent);
  text-align: center;
  transition: transform 0.3s;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px var(--accent);
}

footer {
  text-align: center;
  padding: 1rem 1rem;
  background-color: #1a1a1a;
  font-size: 0.9rem;
  color: #999;
}