/* Zmienne CSS dla łatwiejszej zmiany kolorów */
:root {
    --primary-color: #007bff;
    /* Główny niebieski */
    --secondary-color: #6c757d;
    /* Szary */
    --accent-color: #28a745;
    /* Zielony (np. dla ikonek sukcesu) */
    --text-color: #343a40;
    /* Ciemny tekst */
    --light-bg: #f8f9fa;
    /* Jasne tło sekcji */
    --dark-bg: #343a40;
    /* Ciemne tło np. stopki */
    --light-grey-border: #dee2e6;
}

/* Ogólne style */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    /* Zaokrąglone krawędzie */
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Ikony Font Awesome */
.icon {
    font-size: 3.5em;
    /* Większe ikony */
    color: var(--primary-color);
    margin-bottom: 20px;
}

.icon-small {
    margin-right: 10px;
    color: var(--primary-color);
}

.main-color {
    color: var(--primary-color);
}

/* Header */
header {
    background: #fff;
    color: var(--text-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--light-grey-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    /* Usuń padding z .container dla nagłówka */
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    /* Dla aktywnej sekcji */
    color: var(--primary-color);
    text-decoration: none;
}

/* Burger menu (dla mobile) */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    min-height: 600px;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('hero-background.jpg') no-repeat center center/cover;
    /* Dodaj tło, ale bardziej subtelne */
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

#hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    /* Umożliwia zawijanie na mniejszych ekranach */
}

.hero-content {
    flex: 1;
    min-width: 300px;
    /* Minimalna szerokość dla zawartości */
}

.hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    /* Minimalna szerokość dla obrazu */
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sekcje ogólne */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* About Section */
#about .about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
}

#about .about-text {
    flex: 2;
    min-width: 300px;
}

#about .about-text p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

#about .about-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

#about .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    /* Zdjęcie w kółku */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Offer Section */
.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.offer-cards .card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.offer-cards .card h3 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.offer-cards .card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.offer-cards .card li {
    margin-bottom: 12px;
    font-size: 1.05em;
    display: flex;
    align-items: center;
}

.offer-cards .card li .fa-check-circle {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2em;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.advantage-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item h4 {
    margin-top: 20px;
    font-size: 1.5em;
    color: var(--primary-color);
}

.advantage-item p {
    font-size: 1em;
    color: #555;
}

/* Reviews Section */
.review-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Na mobile jedno, na większych więcej */
    gap: 30px;
    margin-top: 40px;
    /* Jeśli chcesz prawdziwą karuzelę, to wymaga JS */
    /* overflow-x: auto;
    scroll-snap-type: x mandatory; */
}

.review-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    font-style: italic;
    /* scroll-snap-align: start; */
}

.review-card::before {
    content: '\201C';
    /* Otwierający cudzysłów */
    font-size: 4em;
    color: var(--primary-color);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
}

.review-card::after {
    content: '\201D';
    /* Zamykający cudzysłów */
    font-size: 4em;
    color: var(--primary-color);
    position: absolute;
    bottom: -10px;
    right: 20px;
    opacity: 0.2;
}

.review-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    margin-top: 15px;
    display: block;
}

/* Pricing Section */
.pricing-intro {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555;
}

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

.pricing-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.recommended {
    border: 3px solid var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    font-size: 2em;
    color: var(--dark-bg);
    margin-bottom: 25px;
}

.pricing-card .price {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #777;
}

.pricing-card .price span {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 12px;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.pricing-card li .fa-check {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1em;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}

.pricing-table .note {
    margin-top: 40px;
    font-size: 0.95em;
    color: #777;
}

/* Contact Section */
.contact-intro {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555;
}

.contact-grid {
    display: flex;
    gap: 50px;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details p {
    font-size: 1.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-details p a {
    color: var(--text-color);
}

.contact-details p a:hover {
    color: var(--primary-color);
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 1.3em;
    margin-right: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: #0056b3;
    transform: translateY(-3px);
    text-decoration: none;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: calc(100% - 24px);
    /* Odjąć padding */
    padding: 12
