@charset "UTF-8";
/* Variables */
/* Reset */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

a {
  text-decoration: none;
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:hover {
  color: #00b16a;
}

ul {
  list-style: none;
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #00b16a;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: #007e4b;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #333333;
  padding: 12px 30px;
  border: none;
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.btn-secondary:hover {
  color: #00b16a;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}
.cookie-popup.active {
  display: block;
}
.cookie-popup .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-popup .cookie-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cookie-popup .cookie-content p {
  margin-bottom: 20px;
}
.cookie-popup .cookie-content .cookie-link {
  color: #00b16a;
  text-decoration: underline;
}
.cookie-popup .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

/* Header */
.header {
  padding: 20px 0;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.header .logo a {
  color: #00b16a;
}
.header .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .header .main-nav ul {
    display: none;
  }
}

/* Hero Section */
.hero {
  background-color: #00b16a;
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}
.hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}
.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .hero-content .btn-primary {
  background-color: #ffffff;
  color: #00b16a;
}
.hero .hero-content .btn-primary:hover {
  background-color: #e6e6e6;
}

/* Section Styles */
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
.section .section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section .section-heading h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .section .section-heading h2 {
    font-size: 1.8rem;
  }
}
.section .section-heading p {
  max-width: 800px;
  margin: 0 auto;
}
.section .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 992px) {
  .section .section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section .section-content .section-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section .section-content .section-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section .section-content .section-text h2 {
    font-size: 1.8rem;
  }
}
.section .section-content .section-text p {
  margin-bottom: 20px;
}
.section .section-content .section-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section .section-content .section-image img {
  width: 100%;
  border-radius: 8px;
}

/* Kim Jesteśmy Section */
.kim-jestesmy {
  background-color: #f5f5f5;
}

/* Rozwiązujemy Section */
.rozwiazujemy .challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .rozwiazujemy .challenges-grid {
    grid-template-columns: 1fr;
  }
}
.rozwiazujemy .challenges-grid .challenge-card {
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}
.rozwiazujemy .challenges-grid .challenge-card .challenge-icon img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.rozwiazujemy .challenges-grid .challenge-card .challenge-text {
  padding: 20px;
}
.rozwiazujemy .challenges-grid .challenge-card .challenge-text h3 {
  font-size: 1.2rem;
}

/* Nasze Usługi Section */
.nasze-uslugi {
  background-color: #f5f5f5;
}
.nasze-uslugi .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .nasze-uslugi .services-grid {
    grid-template-columns: 1fr;
  }
}
.nasze-uslugi .services-grid .service-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nasze-uslugi .services-grid .service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #00b16a;
}

/* Wiedza Section */
@media (max-width: 992px) {
  .wiedza .section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/* Contact Section */
.contact {
  background-color: #f5f5f5;
}
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .contact h2 {
    font-size: 1.8rem;
  }
}
.contact .contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact .contact-form .form-group {
  margin-bottom: 20px;
}
.contact .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #666666;
  border-radius: 4px;
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
}
.contact .contact-form .form-group textarea {
  height: 150px;
  resize: vertical;
}
.contact .contact-form .btn-primary {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: #333333;
  color: #ffffff;
  padding: 60px 0 30px;
}
.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
.footer .footer-content .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.footer .footer-content .footer-logo a {
  color: #ffffff;
}
.footer .footer-content .footer-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .footer-content .footer-links ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .footer-content .footer-links ul li a {
  color: #ffffff;
}
.footer .footer-content .footer-links ul li a:hover {
  color: #00b16a;
}
.footer .footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Media Queries for Responsive Design */
@media (max-width: 576px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .section {
    padding: 40px 0;
  }
  .section-heading h2 {
    font-size: 1.6rem;
  }
  .section-content .section-text h2 {
    font-size: 1.6rem;
  }
}
.text-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 60px 0;
}
.text-section h2 {
  font-family: Roboto Mono;
  font-weight: 500;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: -2%;
  text-align: center;
}
.text-section p {
  font-family: Roboto Mono;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
}

.thank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 60px 0;
}
.thank h2 {
  font-family: Roboto Mono;
  font-weight: 500;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: -2%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thank p {
  font-family: Roboto Mono;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}