body { 
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

h2 {
	font-size:18px;
	text-align: left;
	color: #c3ff00;
}

h3 {
	font-size: 28px;
	text-align: center;
	color: #c3ff00;

}

h4 {
	font-size: 36px;
	font-weight: bold;
    color: #c3ff00;

}
a.button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #00ffff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.4rem;
}


.styled-paragraph {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
}


/* Container */
.container {
  width: 92%;
  margin: auto;

}

/* Tablet */
@media (min-width: 576px) {
  .container { width: 548px; }
}

/* Desktop */
@media (min-width: 1200px) {
  .container { width: 1140px; }
}

/* Header */
header {
  background-color: #000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Center header content */
.top-bar {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, menu right */
  max-width: 1140px;              /* match desktop container */
  margin: 0 ;                 /* centre the whole bar */
  width: 92%;                     /* match your container width */
}


.logo {
  font-size: 36px;
  font-weight: 700;
}

/* Desktop Navigation */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  user-select: none;
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 15px 0;
}
.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 20px 0;
  text-align: left;
  font-size: 18px;
}
/* Mobile Breakpoint */
@media (max-width: 700px) {
  nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-nav.show {
    display: flex;
  }
}
/* Hero */
.hero {
  background-color: #000;
  padding: 20px 0;

}

.hero-text {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-gap {
  height: 460px; /* adjust spacing here */
}

.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }



.hero-content {
  text-align: left;
  max-width: 1140px;
  color: white;
  font-size: 1.8rem;
  line-height: 1.5;
}
.hero-text h1 {
  padding: 20px;
  color: white;
  text-align: center;
  font-size: 3.8rem;
  margin-bottom: 1rem;
}
.hero-text h2 {
  padding: 20px;
  color: white;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.hero-text p {
  color: white;
  text-align: left;
  font-size: 1.6rem;
}
/* Three Columns */
.hero-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  color: white;
  text-align: left;
}

.hero-columns .col {
  padding: 20px;
  background: #111;
  border-radius: 6px;
}
.hero-columns .col h3 {
  padding: 20px;
  background: #111;
  border-radius: 6px;
}
/* Stack on mobile */
@media (max-width: 700px) {
  .hero-columns {
    grid-template-columns: 1fr;
  }
}


/* Content */
.content {
  background-color: #000;
  color: white;
  width: 100%;
  padding: 20px 0; /* top/bottom spacing */
}

.content-inner {
  max-width: 1140px;   /* controls how wide the text area is */
  margin: 0 auto;     /* centers the text block */
  text-align: center; /* centers the text inside */
  font-size: 1.6rem;
  margin-top: 60px;
}

.content-inner-2{
  max-width: 1140px;   /* controls how wide the text area is */
  margin: 0 auto;     /* centers the text block */
  text-align: left; /* centers the text inside */
  font-size: 1.6rem;
}


/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 0 20px 20px 20px;
}

footer .footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px;
  padding-top: 20px;
}
footer a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

footer .footer-col {
  flex: 1;
  min-width: 220px;
}

footer h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #c3ff00;
}

/* Mobile */
@media (max-width: 700px) {
  footer .footer-inner {
    flex-direction: column;
  }
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 40px auto;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #00ffff;
  border: none;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #00cccc;
}