body {
  margin: 0;
  font-family: 'Segoe UI', 'Inter', sans-serif;
  background-color: #2e633f; 
  color: #fdfdfd; 
  line-height: 1.65;
  letter-spacing: 0.4px;
  scroll-behavior: smooth;
  transition: background 0.4s ease;
}

h1, h2 {
  text-align: center;
  font-weight: 600;
  margin: 0.75em 0 0.5em;
  font-size: 2.4em;
  color: #fdfdfd;
}

.highlight {
  color: #edf8ef;
  font-weight: 700;
}

.section,
.about-section,
.portfolio-section {
  margin: 3em auto;
  padding: 2em;
  width: 90%;
  max-width: 960px;
  border-radius: 20px;
  background-color: #a1b99a; 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #2e633f;
}

.btn {
  padding: 0.85em 2em;
  margin: 1em;
  font-size: 1em;
  border: none;
  border-radius: 40px;
  background: #fdfdfd;
  color: #2e633f;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  background: #edf8ef; 
  color: #2e633f;
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.2);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin-top: 2em;
}

.card {
  flex: 1 1 300px;
  padding: 1.5em;
  background: #f7f6df; 
  border: 1px solid #d8d8d8; 
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  color: #2e633f;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}



.nav-buttons {
  text-align: center;
  margin-top: 3em;
}

.account-link {
  position: absolute;
  top: 1.2em;
  right: 1.5em;
  z-index: 1000;
}

.account-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fcebd7;
  padding: 4px;
  border: 2px solid #a1b99a;
  box-shadow: 0 0 10px rgba(161, 185, 154, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(161, 185, 154, 0.5);
  cursor: pointer;
}

.founder img {
  border: 2px solid #a1b99a;
}

.stock-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5em;
  margin-top: 2em;
}

.stock-card {
  background: #f7f6df;
  border: 1px solid #d8d8d8;
  padding: 1em;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #2e633f;
}

.stock-card h3 {
  margin-bottom: 0.5em;
  color: #2e633f;
}

.gain {
  color: #2e633f;
  font-weight: bold;
}

.loss {
  color: #a94442;
  font-weight: bold;
}

@media (max-width: 768px) {
  .stock-list {
    grid-template-columns: 1fr;
  }
}

.stock-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.stock-link * {
  text-decoration: none !important;
}
input, select {
  width: 100%;
  font-size: 1em;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.act-now-button {
  display: inline-block;
  background: linear-gradient(135deg, #47c267, #38a169);
  color: white;
  font-weight: bold;
  padding: 0.75em 1.5em;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.act-now-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
