/* Official Yankees Colors */
:root {
  --yankee-navy: #003087;
  --yankee-gray: #E3E6E7;
  --yankee-white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  background-color: var(--yankee-gray);
  color: #333;
}

header {
  background-color: var(--yankee-navy);
  color: var(--yankee-white);
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 5px solid #111;
}

nav {
  background: #111;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 10px;
}

.container {
  width: 95%;
  max-width: 1000px;
  margin: 1.5rem auto;
  padding: 20px;
  background: var(--yankee-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 4px;
}

h2 {
  color: var(--yankee-navy);
  border-bottom: 2px solid var(--yankee-navy);
  padding-bottom: 10px;
  font-size: 1.5rem;
}

.comparison-grid {
  display: flex;
  flex-direction: column; 
  gap: 20px;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .comparison-grid {
    flex-direction: row; 
  }
  
  .comparison-grid section {
    flex: 1;
  }
  
  header h1 {
    font-size: 2.5rem;
  }
}

ul {
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: #666;
}

.hero-image-container {
    width: 100%;
	max-width: 100%; 
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 4px;
    border-bottom: 4px solid var(--yankee-navy);
}

.responsive-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
	object-fit: contain;
}

.responsive-img:hover {
    opacity: 0.9;
    transition: 0.3s;
}

