
body {
      font-family: 'Times New Roman', serif;
      margin: 0;
      padding: 0;
      background-color: #f0f4f8;
    }

header {
      background-color: #2e3a59;
      color: #fff;
      text-align: center;
      padding: 10px;
      font-size: 14px;
    }

nav {
      padding: 10px 40px;
    }

nav .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 1;
    }

nav .logo-container img {
      height: 40px;
    }

nav .logo-container .logo-text {
      font-size: 24px;
      font-weight: bold;
      white-space: nowrap;
      padding-right: 10px;
      color: #2e3a59;
    }

nav ul {
      list-style: none;
      display: flex;
      gap: 10px;
      margin: 0;
      padding: 0;
    }

nav ul li a {
      text-decoration: none;
      color: #2e3a59;
      font-weight: bold;
      font-size: 16px;
      padding: 8px 16px;
    }

nav ul li a:hover {
      text-decoration: underline;
    }

nav ul li.active a {
      background-color: #4a6fa5;
      color: white;
    }

.contact-info {
      text-align: center;
      padding: 10px 20px 5px;
      font-size: 16px;
      color: #1f2d47;
      line-height: 1.3;
    }

footer {
      background-color: #2e3a59;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }

.content-wrapper {
      max-width: 1000px;
      overflow-x: auto;
      margin: 0 auto;
      padding: 0 20px;
    }



