/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

a {
  color: #0066cc;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

.contactUsContainer {
  text-align:center;
}

/* Header */
header {
  background: #1b1f23;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  float: left;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #0066cc;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero .btn {
  background: #fff;
  color: #0066cc;
  padding: 12px 24px;
  margin-top: 20px;
  display: inline-block;
  border-radius: 4px;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 60px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-width: 300px;
  flex: 1;
}

/* Dark Section */
.section.dark {
  background: #e9e9e9;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  text-align: center;
}

.contact-info li {
  margin: 10px 0;
}

/* Footer */
footer {
  background: #1b1f23;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  header h1, nav {
    float: none;
    text-align: center;
  }
}

/* Logo and Header Layout */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  object-fit: contain;
}

.myHeader {
	font-size: 30px;
}
