body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f9fa;
}

/* Navbar */
.custom-green {
  background-color: #228B22 !important;
}

.header-logo {
  height: 50px;
  border-radius: 4px;
}

/* Cards */
.card {
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 10px;
}

/* About Me sticky справа */
.sticky-sidebar {
  position: sticky;
  top: 20px;
}

/* Media Queries */
@media (max-width: 992px) {
  .header-logo { height: 45px; }
  .navbar-nav .nav-link { font-size: 14px; }
}

@media (max-width: 768px) {
  .header-logo { height: 40px; }
  .navbar-nav { flex-direction: column; gap: 5px; }
  .sticky-sidebar { position: relative; top: 0; margin-top: 20px; }
}

@media (max-width: 576px) {
  .card .card-title { font-size: 16px; }
  .card .card-text { font-size: 14px; }
}
