/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #212529;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-subtitle {
    color: #6c757d;
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.bg-light {
    background-color: #e9ecef;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #212529;
    font-size: 1.8rem;
    font-weight: 700;
}

header .logo img {
    height: auto;
    width: 150px; /* Domyślna szerokość logo */
    margin-right: 10px;
    display: block;
}

header .logo span {
    color: #007bff;
}

/* Navigation */
header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    color: #343a40;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

header nav ul li a:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #343a40;
    transition: transform 0.3s ease;
}

/* Hero Section */
#hero {
    background-color: #007bff;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg-modern.jpg') center center/cover no-repeat;
    opacity: 0.6;
    z-index: -1;
}

.hero-content .container {
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0f2f7;
}

.hero-buttons a {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 10px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #fff;
    color: #007bff;
}

.btn-primary:hover {
    background-color: #e0f2f7;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Offer Section */
.offer-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.offer-card h3 {
    color: #212529;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-link {
    display: inline-block;
    margin-top: 20px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #0056b3;
}

/* About Us Section */
.about-content {
    padding-right: 40px;
}

.about-content h2 {
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.btn-full {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
}

/* Basic Mobile Styles (will be overridden by larger screen styles) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    header .logo {
        font-size: 1.5rem;
    }

    header .logo img {
        width: 120px; /* Domyślna szerokość logo na mobile */
    }

    header nav {
        display: none; /* Ukryj menu na mobile */
    }

    .hamburger {
        display: flex; /* Pokaż hamburger */
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-