 <style>
      	 
	:root {
	  --text: #222;
	}	   
	
    :root {
      --primary: #eac7ff;
      --accent: #6247aa;
      --background: #fefafe;
    }
    body {
      font-family: 'Nunito', sans-serif;
      background: var(--background);
      color: #222 !important;
      margin: 0;
    }
    
    /* Responsywna nawigacja */
    nav {
      background: linear-gradient(to right, #7f00ff, #e100ff);
      padding: 1rem;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      position: sticky;
      top: 0;
      z-index: 100;
      flex-wrap: wrap;
      width: 100%;
      box-sizing: border-box;
    }
    
    nav div {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    nav div img {
      max-height: 70px;
      width: auto;
    }
    
    nav ul {
      list-style: none;
      display: flex;
      gap: 1rem;
      margin: 0;
      padding: 0;
      flex-wrap: wrap;
    }
    
    nav a {
      color: white;
      text-decoration: none;
      padding: 0.5rem;
      border-radius: 4px;
      transition: background-color 0.2s;
    }
    
    nav a:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }
    
    .menu-toggle {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      color: white;
      font-size: 1.8rem;
      position: absolute;
      right: 1rem;
      top: 0.5rem;
      z-index: 105;
      padding: 0;
      line-height: 1;
      height: 2.5rem;
      width: 2.5rem;
      align-items: center;
      justify-content: center;
      background: none;
    }
    
    /* Responsywny header */
    header {
      min-height: 100vh;
      background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.3)), url('header-rymoteka-poezja.png') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 2rem 1rem;
      box-sizing: border-box;
    }
    
    header h1 {
      font-family: 'Nunito';
	  font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 600;
      color: white;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      position: relative;
    }
    
    /* Efekt pisania maszynowego */
    .typewriter-text {
      position: relative;
      display: inline-block;
      overflow: hidden;
      border-right: 0.09em solid white;
      white-space: nowrap;
      margin: 0 auto;
      letter-spacing: 0.10em;
      animation: typing 2s steps(8, end), blink-caret 0.75s step-end infinite;
    }
    
    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }
    
    @keyframes blink-caret {
      from, to { border-color: transparent }
      50% { border-color: white }
    }
    
    header p {
      font-size: clamp(1rem, 4vw, 1.5rem);
      max-width: 600px;
      margin: 1rem auto 2rem;
      color: white;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    header a {
      background: linear-gradient(135deg, #eac7ff, #ffe1f0);
      color: #4a3769;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      font-size: clamp(0.9rem, 3vw, 1.1rem);
      box-shadow: 0 0 0 0 rgba(234, 199, 255, 0.6);
      transition: transform 0.2s ease, box-shadow 0.4s ease;
      animation: pulse 3s infinite;
      display: inline-block;
      margin: 0 auto;
    }
    
    header a:hover {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(234, 199, 255, 0.1);
    }
    
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(234, 199, 255, 0.4);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(234, 199, 255, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(234, 199, 255, 0);
      }
    }
    
    /* Responsywne sekcje */
    section {
      padding: 3rem 1rem;
      max-width: 900px;
      margin: auto;
    }
    
    section h2 {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      margin-bottom: 1rem;
      color: var(--accent);
    }
    
    /* Poetyckie przykłady */
    .poem-examples {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .poem-card {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .poem-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .poem-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, #7f00ff, #e100ff);
    }
    
    .poem-card h3 {
      margin-top: 0;
      color: var(--accent);
      font-size: 1.3rem;
    }
    
    .poem-content {
      font-style: italic;
      margin: 1rem 0;
      line-height: 1.5;
	  text-align: center;
    }
    
    .poem-occasion {
      margin-top: auto;
      font-size: 0.9rem;
      color: #666;
      text-align: right;
    }
    
    /* Cennik */
    .pricing {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-top: 2rem;
      position: relative;
      text-align: left;
    }
    
    .pricing a.button,
    .pricing .button {
      display: inline-block;
      background: linear-gradient(135deg, #7f00ff, #e100ff);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 1rem;
      font-size: 1.1rem;
      text-align: center;
      width: auto;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 5px 15px rgba(127,0,255,0.05);
    }
    
    .pricing a.button:hover,
    .pricing .button:hover {
      background: linear-gradient(135deg, #e100ff, #7f00ff);
      transform: translateY(-2px) scale(1.04);
    }
    
    .pricing h3 {
      margin-top: 0;
      color: var(--accent);
    }
    
    .price-tag {
      font-size: 2rem;
      font-weight: bold;
      color: #6247aa;
      margin: 1rem 0;
      display: flex;
      align-items: baseline;
    }
    
    .price-tag .amount {
      font-size: 2.5rem;
    }
    
    .price-tag .currency {
      font-size: 1.5rem;
      margin-left: 0.3rem;
    }
    
    .price-details {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }
    
    .price-details li {
      margin-bottom: 0.7rem;
      position: relative;
      padding-left: 1.5rem;
    }
    
    .price-details li::before {
      content: "✓";
      color: #7f00ff;
      position: absolute;
      left: 0;
      font-weight: bold;
    }
    
    /* Responsywne cytaty */
    .quote {
      font-style: italic;
      background: #fff2fb;
      padding: 1.5rem;
      border-left: 5px solid var(--accent);
      margin: 1.5rem 0;
      border-radius: 8px;
      font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    /* FAQ */
    .faq-container {
      margin-top: 2rem;
    }
    
    .faq-item {
      margin-bottom: 1rem;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .faq-question {
      padding: 1rem;
      background: #f9f0ff;
      cursor: pointer;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-question::after {
      content: "+";
      font-size: 1.2rem;
      transition: transform 0.3s;
    }
    
    .faq-item.active .faq-question::after {
      transform: rotate(45deg);
    }
    
    .faq-answer {
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      padding: 1rem;
      max-height: 500px;
    }
    
    /* Responsywny formularz */
    form {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    form input, form textarea, form select {
      border-radius: 8px;
      padding: 0.8rem;
      width: 100%;
      border: 1px solid #ddd;
    }
    
    form textarea {
      min-height: 150px;
    }
    
    .form-group {
      display: flex;
      gap: 1rem;
      width: 100%;
    }
    
    .form-group > * {
      flex: 1;
    }
    
    form button {
      background: linear-gradient(135deg, #7f00ff, #e100ff);
      color: white;
      border: none;
      padding: 0.8rem;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.2s;
    }
    
    form button:hover {
      transform: translateY(-3px);
    }
    
    /* Responsywny footer */
    footer {
      background: #eee;
      text-align: center;
      padding: 1.5rem;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    
    footer img {
      max-height: 80px;
      width: auto;
    }
    
    /* Media queries dla lepszej responsywności */
    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        position: relative;
      }
      
      nav > div {
        width: calc(100% - 3rem);
        display: flex;
        align-items: center;
        font-size: 1.2rem;
        padding-left: 0.2rem;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      nav ul {
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
        position: static;
        box-shadow: none;
      }
      
      nav li {
        width: 100%;
      }
      
      nav a {
        display: block;
        padding: 0.8rem 0;
      }
      
      #nav-menu {
        display: none;
        width: 100%;
      }
      
      #nav-menu.active {
        display: flex;
      }
      
      .form-group {
        flex-direction: column;
      }
      
      /* CTA button w .pricing na pełną szerokość na mobile */
      .pricing a.button,
      .pricing .button {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.1rem;
        margin-top: 1.2rem;
      }
      
      /* Header poprawki - rozciągnięcie w dół */
      header {
        background-position: center top;
        background-size: cover;
        min-height: 100vh;
        padding-top: 4rem;
        padding-bottom: 4rem;
        justify-content: center;
      }
      
      header h1, header p {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      }
	  	  
    }
	
		.sr-only {
	  position: absolute !important;
	  width: 1px !important;
	  height: 1px !important;
	  padding: 0 !important;
	  margin: -1px !important;
	  overflow: hidden !important;
	  clip: rect(0, 0, 0, 0) !important;      
	  white-space: nowrap !important;
	  border: 0 !important;
	}
  </style>