/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Navigation Bar */
.golf-specs-links {
  background-color: #c0c0c0;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.specs-nav a {
  margin: 0 8px;
  color: #333;
  text-decoration: none;
}

.specs-nav a:hover {
  text-decoration: underline;
}

/* Section Headers */
h2, h3 {
  color: #000080;
  text-align: center;
  margin-bottom: 20px;
}

/* Intro Row */
.golf-intro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.golf-intro-text {
  flex: 1 1 600px;
}

.golf-warranty-logo img {
  height: 100px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Emphasized Paragraph Block */
.golf-note {
  background-color: #f2f2f2;
  padding: 15px 20px;
  margin: 30px 0;
  border-left: 6px solid #000080;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
}

/* Image Rows */
.golf-specs-gallery .image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.image-item {
  text-align: center;
  max-width: 220px;
}

.image-item img {
  height: 150px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.image-item p {
  font-size: 14px;
  margin-top: 8px;
}

.image-item span {
  font-size: 12px;
  color: #666;
}

/* Layout Section */
.golf-layout-block {
  margin-top: 40px;
}

.golf-layout-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.layout-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.layout-subimage img {
  max-width: 225px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.layout-text {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .golf-intro-row,
  .golf-layout-grid {
    flex-direction: column;
    align-items: center;
  }

  .golf-warranty-logo img {
    margin-top: 15px;
  }

  .layout-subimage img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .layout-text {
    padding: 0 10px;
  }
}
