/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f7fa;
}

header {
  background-color: #073763;
  color: #fff;
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 1px;
}

header p.tagline {
  font-size: 1rem;
  margin-top: 8px;
  color: #dfeaf5;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0a539e;
  padding: 10px 20px;
}

nav .logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffd500;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero a.btn {
  background-color: #ffd500;
  color: #073763;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero a.btn:hover {
  background-color: #ffca00;
}

/* Section Styles */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #073763;
}

/* Product Cards */
.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.product-card {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card .content {
  padding: 20px;
  flex: 1;
}

.product-card h4 {
  margin-bottom: 10px;
  color: #0a539e;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.product-card a.btn {
  align-self: flex-start;
  background-color: #0a539e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.product-card a.btn:hover {
  background-color: #08376b;
}

/* Call to Action Section */
.cta {
  background-color: #0a539e;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
}

.cta h3 {
  color: #fff;
  margin-bottom: 15px;
}

.cta a.btn {
  background-color: #ffd500;
  color: #0a539e;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta a.btn:hover {
  background-color: #ffca00;
}

/* Footer */
footer {
  background-color: #073763;
  color: #dfeaf5;
  text-align: center;
  padding: 20px;
}

footer p {
  font-size: 0.9rem;
}

/* Services / Support Page */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.service-item {
  flex: 1 1 300px;
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
  margin-bottom: 10px;
  color: #0a539e;
}

.service-item p {
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: #073763;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #0a539e;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #08376b;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul li {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .hero h2 {
    font-size: 2rem;
  }
}
