/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background: ##ffffff;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 10px 0;
}

/* Header */
header {
  background: #fff;
  border-bottom: 2px solid #01304A;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img.logo {
  max-width: 350px;
  height: auto;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #01304A;
}

/* Hero */
.hero {
  background: #01304A;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  padding: 12px 25px;
  background: #F4C618;
  color: #01304A;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.cta:hover {
  background: #333;
  color: #fff;
}

/* Sections */
section {
  padding: 50px 20px;
  background: #fff;
  margin-bottom: 0px;
  border-radius: 0px;
}

section h2 {
  color: #01304A;
  margin-bottom: 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.service h3 {
  color: #01304A;
  margin-bottom: 10px;
}

/* Banner */
.banner {
  position: relative;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  margin-bottom: 0px;
}

/* Contact */
#contact p {
  text-align: center;
  font-size: 1.1rem;
}

#contact a {
  color: #01304A;
  text-decoration: none;
  font-weight: bold;
}

#contact a:hover {
  text-decoration: underline;
  color: #F4C618;
}

#about p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
} 

footer {
  background-color: #f8f8f8; /* adjust if needed */
  padding: 20px;
  position: relative;
  text-align: center;
}

.footer-content {
  position: relative;
}

.trademark-fixed {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;   /* doubled size */
  width: auto;
}

.footer-content p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* Responsive: stack logo above text */
@media (max-width: 600px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trademark-fixed {
    position: static;
    transform: none;
    margin-bottom: 0px;
  }
}
