.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.gridbiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gridbiz-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.gridbiz-item:hover {
  transform: translateY(-5px);
}

.gridbiz-link {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 1rem;
}

.gridbiz-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.gridbiz-title {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.gridbiz-excerpt {
  color: #666;
  font-size: 0.95rem;
}

/* Example CSS to align menu items in one line */
.menu ul {
	display: flex; /* Aligns items in a row */
	justify-content: center; /* Centers the menu items horizontally */
	list-style: none; /* Removes bullet points */
	padding: 0; /* Removes default padding */
	margin: 0; /* Removes default margin */
}

.menu-item li {
	margin: 0 15px; /* Adds spacing between menu items */
}

.menu-item a {
	text-decoration: none; /* Removes underline from links */
	color: #000; /* Sets link color */
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	text-align: center;
}

.feature-item {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	font-weight: bold;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: #f9fafc;
	padding: 2rem;
	border-left: 5px solid #0062ff;
	font-style: italic;
}

.cta-section {
	background: #0062ff;
	color: white;
	text-align: center;
	padding: 4rem 2rem;
}

	.cta-section .btn-primary {
		background: white;
		color: #0062ff;
		padding: 1rem 2rem;
		border-radius: 30px;
		margin-top: 1rem;
		display: inline-block;
		text-decoration: none;
		font-weight: bold;
	}

.team-grid {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.team-member {
	text-align: center;
}

	.team-member img {
		border-radius: 50%;
		width: 120px;
		height: 120px;
	}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.portfolio-item img {
	width: 100%;
	border-radius: 10px;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
}

	.woocommerce ul.products li.product {
		background: white;
		padding: 1rem;
		border: 1px solid #eee;
		border-radius: 10px;
		text-align: center;
	}

		.woocommerce ul.products li.product img {
			width: 100%;
			border-radius: 5px;
		}

.woocommerce div.product .woocommerce-tabs,
.woocommerce .product_meta {
	margin-top: 2rem;
}

