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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333;
  background-color: #336699;
  line-height: 1.6;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  background: url('https://truenorthseed.com/images/content_background.gif') repeat-y;
  background-color: #fff;
}

/* Header */
.header {
  background: url('https://truenorthseed.com/images/header.gif') no-repeat;
  padding: 20px 0 25px;
  text-align: center;
}

.logo-section {
  display: inline-block;
}

.logo-text {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 42px;
  font-weight: normal;
  color: #003366;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.logo-subtitle {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  color: #660000;
  letter-spacing: 4px;
  margin: 5px 0 0;
  font-weight: normal;
}

/* Hero Image */
.hero-image {
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main Content */
.main-content {
  padding: 15px 25px;
}

.section-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 18px;
  color: #660000;
  font-weight: bold;
  border-bottom: 1px dashed #660000;
  padding-bottom: 3px;
  margin: 15px 0 10px;
}

/* Content Tables */
.content-table {
  width: 100%;
  border: none;
  margin: 8px 0 15px 0;
}

.content-cell {
  padding: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}

.content-cell p {
  margin-bottom: 8px;
}

/* Awards & Excellence Combined Section */
.awards-excellence-section {
  margin: 25px 0;
}

.award-cell {
  padding: 10px;
  background-color: transparent;
  border-left: 4px solid #660000;
}

.award-icon {
  display: block;
  margin: 0 auto;
}

.award-year {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 14px;
  color: #003366;
  margin: 0 0 3px 0;
}

.award-title {
  font-size: 12px;
  font-weight: bold;
  color: #660000;
  margin: 0 0 5px 0;
}

.award-text {
  font-size: 11px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* Operations Section */
.operations-section {
  margin: 25px 0;
}

.operation-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 13px;
  color: #003366;
  margin: 0 0 5px 0;
}

.operation-text {
  font-size: 11px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

.excellence-number {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 14px;
  font-weight: bold;
  color: #003366;
  margin: 0 0 5px 0;
}

.excellence-label {
  font-size: 10px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.excellence-note {
  font-size: 11px;
  line-height: 1.5;
  color: #333;
  margin: 10px 0 0 0;
  padding: 0 8px;
}

/* History Section */
.history-section {
  margin: 25px 0;
}

.history-image {
  width: 200px;
  height: auto;
  border: 1px solid #cccccc;
  float: right;
  margin-left: 15px;
  margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
  margin: 25px 0;
  background-color: transparent;
  padding: 15px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 12px;
}

.contact-item {
  font-size: 12px;
  line-height: 1.6;
  color: #333;
}

.contact-item strong {
  color: #003366;
  font-size: 13px;
}

.contact-item a {
  color: #660000;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: url('https://truenorthseed.com/images/footer.gif') no-repeat;
  height: 29px;
  padding-top: 5px;
  text-align: center;
  font-size: 10px;
  color: #666;
  clear: both;
}

.footer p {
  margin: 0;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    margin: 0;
  }

  .main-content {
    padding: 15px 20px;
  }

  .logo-text {
    font-size: 32px;
  }

  .logo-subtitle {
    font-size: 14px;
  }

  .content-table table {
    display: block;
    overflow-x: auto;
  }

  .content-table td[width] {
    display: block;
    width: 100% !important;
  }

  .awards-excellence-section table tr td {
    display: block;
    width: 100% !important;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 28px;
  }

  .logo-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 18px;
  }

  .award-card h3 {
    font-size: 16px;
  }
}
