body {
	background: black;
	color: white;
	font-family: system-ui;
	font-size: 17px;
	margin: 0; /* remove default browser margin */
}
a {
	text-decoration: none;
	color: white;
}
h1, h2, h3, h4, h5 {
	line-height: 35px;
	margin: 0;
}
.mb-30 {
	margin-bottom: 30px;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 1rem;
}

.navbar .logo .nav-logo {
  height: 40px;
  width: auto;
}

.navbar .right-section {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.navbar .right-section a {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s;
}

.navbar .right-section a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar .right-section .nav-action-btn {
  background-color: #fff;
  color: #000;
  border-radius: 990px;
  padding: 10px 18px 10px 18px;
  font-weight: 600;
}

.navbar .right-section .nav-action-btn:hover {
  background-color: #e5e5e5;
}

/* HOMEPAGE */

.homepage {
	padding-top: 35px;
	padding-left: 35px;
	padding-right: 35px;
	padding-bottom: 35px;
}
.home-title {
	max-width: 350px;
	margin-bottom: 15px;
}
.mb-20 {
	margin-bottom: 20px;
}
.action-button {
    background-color: white;
    color: black;
    border-radius: 990px;
    padding: 10px 24px 10px 18px;
    display: inline-block;
    font-weight: 600;
}
.ab-icon {
  width: 14px;
  height: 14px;
  fill: black;
  margin-right: 6px;
  flex-shrink: 0;
}


.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.background-video {
  width: 100%;
  height: auto;
  display: block;
}

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