 :root {
     --primary-color: #4a8eaa;
     --secondary-color: #5cb5d7;
     --accent-color: #b897d8;
     --dark-color: #2d6b8d;
     --light-color: #e5f0f5;
     --text-color: #446a7c;
     --gradient-bg: linear-gradient(135deg, #40b1e5, #9e71c8);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
 }


 header {
     background-color: white;
     box-shadow: var(--shadow-light);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 0;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo-icon {
     margin-right: 15px;
     height: 40px;
     width: auto;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .logo-text {
     font-size: 1.8rem;
     font-weight: bold;
     color: var(--primary-color);
 }

 .logo-text span {
     color: var(--accent-color);
 }

 .nav-links {
     display: flex;
     list-style: none;
 }

 .nav-links li {
     margin-left: 30px;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--dark-color);
     font-weight: 500;
     position: relative;
     transition: var(--transition);
 }

 .nav-links a:hover {
     color: var(--primary-color);
 }

 .nav-links a::after {
     content: "";
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background-color: var(--primary-color);
     transition: var(--transition);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .mobile-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--primary-color);
 }


 body {
     line-height: 1.6;
     color: var(--text-color);
     background-color: var(--light-color);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .container > h1 {
    color: white;
 }

 .article-container {
     max-width: 900px;
     margin: 0 auto;
     padding: 40px 20px;
     background-color: white;
     border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .hero-section {
     background: var(--gradient-bg);
     color: white;
     text-align: center;
     padding: 150px 0 80px;
     margin-bottom: 40px;
 }

 .hero-section h1 {
     font-size: 2.8rem;
     margin-bottom: 20px;
     font-weight: 700;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
 }

 .hero-section .lead {
     font-size: 1.3rem;
     margin-bottom: 30px;
     opacity: 0.95;
 }

 .breadcrumb {
     background-color: var(--light-color);
     padding: 15px 0;
     margin-bottom: 30px;
 }

 .breadcrumb-list {
     display: flex;
     list-style: none;
     color: var(--text-color);
 }

 .breadcrumb-list li::after {
     content: " › ";
     margin: 0 10px;
     color: var(--primary-color);
 }

 .breadcrumb-list li:last-child::after {
     display: none;
 }

 .breadcrumb-list a {
     color: var(--primary-color);
     text-decoration: none;
 }

 .breadcrumb-list a:hover {
     text-decoration: underline;
 }

 h1 {
     font-size: 2.5rem;
     color: var(--dark-color);
     margin-bottom: 30px;
     text-align: center;
     position: relative;
 }

 h1::after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: var(--gradient-bg);
     border-radius: 2px;
 }

 h2 {
     font-size: 2rem;
     color: var(--dark-color);
     margin: 40px 0 20px;
     position: relative;
     padding-left: 20px;
 }

 h2::before {
     content: "";
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 5px;
     height: 30px;
     background: var(--gradient-bg);
     border-radius: 3px;
 }

 h3 {
     font-size: 1.5rem;
     color: var(--primary-color);
     margin: 30px 0 15px;
     font-weight: 600;
 }

 p {
     margin-bottom: 20px;
     font-size: 1.1rem;
     line-height: 1.7;
 }

 .highlight-box {
     background: linear-gradient(135deg,
             rgba(74, 142, 170, 0.1),
             rgba(184, 151, 216, 0.1));
     border-left: 5px solid var(--primary-color);
     padding: 25px;
     margin: 30px 0;
     border-radius: 8px;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
     margin: 40px 0;
 }

 .benefit-card {
     background-color: white;
     border-radius: 12px;
     padding: 30px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
     border: 1px solid rgba(74, 142, 170, 0.1);
 }

 .benefit-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .benefit-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 20px;
     text-align: center;
 }

 .pricing-table {
     background-color: var(--light-color);
     border-radius: 12px;
     padding: 30px;
     margin: 40px 0;
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }

 .pricing-card {
     background-color: white;
     border-radius: 10px;
     padding: 25px;
     text-align: center;
     box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
 }

 .pricing-card:hover {
     transform: translateY(-5px);
 }

 .pricing-card.featured {
     border: 2px solid var(--primary-color);
     position: relative;
 }

 .pricing-card.featured::before {
     content: "Najpopularniejszy";
     position: absolute;
     top: -15px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--gradient-bg);
     color: white;
     padding: 8px 20px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: bold;
 }

 .price {
     font-size: 2.5rem;
     color: var(--primary-color);
     font-weight: bold;
     margin: 15px 0;
 }

 .price-unit {
     font-size: 1rem;
     color: var(--text-color);
 }

 .feature-list {
     list-style: none;
     margin: 20px 0;
 }

 .feature-list li {
     padding: 8px 0;
     position: relative;
     padding-left: 25px;
 }

 .feature-list li::before {
     content: "✓";
     position: absolute;
     left: 0;
     color: var(--primary-color);
     font-weight: bold;
 }

 .faq-section {
     background-color: var(--light-color);
     border-radius: 12px;
     padding: 40px;
     margin: 50px 0;
 }

 .faq-item {
     margin-bottom: 25px;
     background-color: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .faq-question {
     background-color: var(--primary-color);
     color: white;
     padding: 20px;
     cursor: pointer;
     font-weight: 600;
     transition: background-color 0.3s;
 }

 .faq-question:hover {
     background-color: var(--dark-color);
 }

 .faq-answer {
     padding: 20px;
     background-color: white;
 }

 .contact-section {
     background: var(--gradient-bg);
     color: white;
     border-radius: 12px;
     padding: 40px;
     text-align: center;
     margin: 50px 0;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-top: 30px;
 }

 .contact-item {
     text-align: center;
 }

 .contact-icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
     opacity: 0.9;
 }

 .contact-info {
     font-size: 1.1rem;
     font-weight: 600;
 }

 .btn {
     display: inline-block;
     background: var(--gradient-bg);
     color: white;
     padding: 15px 35px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s;
     margin: 20px 10px;
     border: none;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(0, 120, 215, 0.3);
 }

 .btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 120, 215, 0.4);
 }

 .btn-outline {
     background: transparent;
     border: 2px solid white;
     color: white;
 }

 .btn-outline:hover {
     background: white;
     color: var(--primary-color);
 }

 .testimonial {
     background-color: white;
     border-radius: 12px;
     padding: 30px;
     margin: 30px 0;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     border-left: 5px solid var(--accent-color);
 }

 .testimonial-text {
     font-style: italic;
     font-size: 1.1rem;
     margin-bottom: 15px;
 }

 .testimonial-author {
     color: var(--primary-color);
     font-weight: 600;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin: 40px 0;
 }

 .stat-item {
     text-align: center;
     padding: 25px;
     background-color: white;
     border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .stat-number {
     font-size: 3rem;
     font-weight: bold;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .stat-label {
     color: var(--text-color);
     font-weight: 600;
 }

 .local-keywords {
     background-color: var(--light-color);
     border-radius: 12px;
     padding: 30px;
     margin: 40px 0;
 }

 .local-keywords h3 {
     text-align: center;
     margin-bottom: 20px;
 }

 .keywords-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 15px;
     margin-top: 20px;
 }

 .keyword-item {
     background: white;
     padding: 15px;
     border-radius: 8px;
     text-align: center;
     font-weight: 600;
     color: var(--primary-color);
 }

 @media (max-width: 768px) {
     .hero-section h1 {
         font-size: 2.2rem;
     }

     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.7rem;
     }

     .article-container {
         padding: 20px 15px;
     }

     .contact-grid {
         grid-template-columns: 1fr;
     }
 }