/* Base font and colors */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

/* Container with max width and responsive padding */
.container {
 max-width: 1000px;
    margin: auto;
}
strong {
    font-weight: bold; 
}

.page-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2vw 3vw;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header and footer styling */
header, footer {
  margin-bottom: 10px;
    text-align: left; /* Align logo to the left as seen in PDF */
    padding: 10px 0;
}

footer {
  margin-top: 3rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  display: inline-block;
  margin-right: 15px;
}

footer ul.social li {
  display: inline-block;
  margin-right: 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Main content area */
main {
  padding: 0;
}

section {
  margin-bottom: 2.5rem;
}

/* Title section */
.title-section {
  text-align: center;
  margin-bottom: 2rem;
}

.main-banner-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto 2rem;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin-top: 0;
}

/* Section headings */
h2 {
  font-size: 1.8rem;
  color: #0a3d62;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1.4rem;
  color: #1565c0;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Links */
a {
  color: #1565c0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bold-text {
  font-weight: 700;
}

/* Lists */
ul.custom-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul.custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

ul.custom-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1565c0;
  font-weight: bold;
}

/* Emissions scope list */
ul.emissions-scope-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul.emissions-scope-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ul.emissions-scope-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0a3d62;
  font-weight: bold;
}

/* Diamond bullet list */
ul.diamond-bullet-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul.diamond-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

ul.diamond-bullet-list li:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #1565c0;
  font-weight: bold;
}

/* Key note box */
.key-note {
  background-color: #e3f2fd;
  border-left: 4px solid #1565c0;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}

.key-note p {
  margin: 0;
}

/* Strategy boxes */
.strategy-box {
  background-color: #f1f8e9;
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #7cb342;
}

.strategy-box h3 {
  color: #33691e;
  margin-top: 0;
}

/* Feature boxes */
.feature-box {
  background-color: #e8f5e9;
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #2e7d32;
}

.feature-box h3 {
  color: #2e7d32;
  margin-top: 0;
}

/* Benefit table */
.benefit-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.benefit-table table {
  width: 100%;
  border-collapse: collapse;
}

.benefit-table th, .benefit-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.benefit-table th {
  background-color: #0a3d62;
  color: white;
  font-weight: 600;
}

.benefit-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

/* Contact info */
.contact-info {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.contact-info li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Contact box */
.contact-box {
  background-color: #e3f2fd;
  padding: 25px;
  border-radius: 5px;
  margin: 30px 0;
  text-align: center;
}

.contact-title {
  color: #1565c0;
  margin-top: 0;
}

.contact-cta {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: #1565c0;
}

/* Responsive design */
@media (max-width: 768px) {
  .title-section h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  p, ul.custom-list li, ul.emissions-scope-list li, ul.diamond-bullet-list li {
    font-size: 1rem;
  }
  
  .strategy-box, .feature-box {
    padding: 1rem;
  }
  
  .benefit-table th, .benefit-table td {
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .title-section h1 {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .strategy-box, .feature-box {
    padding: 0.75rem;
  }
}
