/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 82:0 Unexpected "<"

**/

<style>
  /* General styles for the page */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
  }

  /* Container for the guide */
  .engraving-guide {
    background-color: #4f0e0e;
    padding: 40px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .guide-container h1 {
    text-align: center;
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .intro-text {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    color: white;
    margin-bottom: 40px;
  }

  .guide-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

.section {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

  .section:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .section h2 {
    font-size: 24px;
    color: black;
    margin-bottom: 15px;
  }

  .section p {
    font-size: 16px;
    line-height: 1.7;
    color: black;
  }

  /* Mobile view: single column layout */
  @media (max-width: 768px) {
    .guide-content {
      grid-template-columns: 1fr;
    }
  }

</style>
