:root {
    --dark: #2d2d2e;
    --yellow: rgb(242, 209, 26);
    --light: #f9f9f9;
    --white: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
  }
  
  /* ===================== */
  /* Header & Navigation   */
  /* ===================== */
  
  header {
    background: var(--dark);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
  }
  
  header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--yellow);
    font-weight: bold;
  }
  
  nav a:hover {
    color: var(--white);
  }
  
  /* ===================== */
  /* Hero Section          */
  /* ===================== */
  
  .hero {
    background: var(--dark);
    color: var(--yellow);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
  }
  
  .hero-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    width: 100%;
    gap: 4rem;
    text-align: left;
  }

  .hero-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .hero-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
  }
  

  .logo-box {
    text-align: center;
  }
  
  .logo-img {
    max-width: 350px;
    height: auto;
    border-radius: 8px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    color: var(--white);
  }
  
  /* ===================== */
  /* Services Section      */
  /* ===================== */
  
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 4rem 2rem;
    background: var(--light);
  }
  
  .card {
    background: var(--white);
    padding: 1.5rem;
    border-left: 6px solid var(--yellow);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .card strong {
    color: var(--dark);
    font-size: 1.1rem;
  }
  
  /* ===================== */
  /* Contact Section       */
  /* ===================== */
  
  .contact {
    padding: 4rem 2rem;
    background: var(--light);
    text-align: center;
  }
  
  .contact h2 {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: bold;
  }
  
  .contact-box {
    background: var(--dark);
    display: inline-block;
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: var(--white);
  }
  
  .contact-box p {
    margin: 0.6rem 0;
    font-size: 1.1rem;
    color: var(--light);
  }
  
  .contact-box .label {
    font-weight: bold;
    display: inline-block;
    min-width: 100px;
    color: var(--yellow);
  }
  
  .contact-box a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-box a:hover {
    color: var(--yellow);
  }
  

  .pricing {
    padding: 4rem 2rem;
    background: var(--white);
    text-align: center;
  }
  
  .pricing h2 {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: bold;
  }
  
  .pricing p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
  }
  
  
  /* ===================== */
  /* Footer                */
  /* ===================== */
  
  footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    background: var(--dark);
    color: var(--white);
  }
  

  /* ===================== */
/* RESPONSYWNOŚĆ MOBILNA */
/* ===================== */

@media (max-width: 768px) {

  /* Header */
  header {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 0.5rem 0;
    display: inline-block;
  }

  .hero-grid {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .logo-img {
    max-width: 200px;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .contact-box {
    padding: 2rem;
    width: 100%;
  }

  .contact-box .label {
    min-width: 80px;
  }

  .pricing h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .pricing p,
  .contact-box p {
    font-size: 1rem;
  }
}
