/* ================================
   PrimeTech IT & Printer Services LLC
   Website Stylesheet
   ================================ */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f7fa;
  color: #222;
  line-height: 1.6;
  padding-bottom: 40px;
}

/* Header */
header {
  background: #0a3d62;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

header p {
  font-size: 16px;
  opacity: 0.9;
}

/* Navigation */
nav {
  margin-top: 15px;
}

nav a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
#hero {
  background: #1e90ff;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

#hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  background: #fff;
  color: #1e90ff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #fff;
}

.btn:hover {
  background: transparent;
  color: #fff;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0a3d62;
}

/* Lists */
ul {
  list-style-type: square;
  margin-left: 20px;
}

ul li {
  margin-bottom: 12px;
  font-size: 17px;
}

/* Contact Section */
#contact p {
  font-size: 18px;
  margin-bottom: 10px;
}

#contact a {
  color: #1e90ff;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 26px;
  }

  #hero h2 {
    font-size: 28px;
  }

  section h2 {
    font-size: 24px;
  }
}