main {
    margin-top: 90px;
    padding: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    background: transparent;
}

.h-wrapper {
    text-align: center;
}

h1 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 0px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    color: #222;
    padding: 20px 0;
    display: inline-block;
    z-index: 1;
}

h1::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 12px;
    background-color: #f2b600;
    z-index: -1;
    opacity: 0.4;
    border-radius: 4px;
}

.artykul {
    text-align: left;
}

.artykul li {
    position: relative;
    margin-bottom: 12px;
}

/* Blog */
.blog-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
    justify-content: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-post a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog-post h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #f2b600;
}

.blog-post p {
    font-size: 1rem;
    margin: 0 0 20px;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item svg {
    flex-shrink: 0;
}




.services-section {
    padding: 10px 20px 0px;
    background-color: #f9f9f9;
    text-align: center;
    max-width: 1200px;
    margin: 0px auto;
    color: #222;
    font-family: 'Georgia', serif;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.service-item .service-text {
    flex: 1 1 55%;
}

.service-item .service-text h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-shadow: 0 0 2px #f2b600;
    color: #333;
}

.service-item .service-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.service-item .service-img {
    flex: 1 1 40%;
    max-width: 40%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-item .service-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.service-item.right-img {
    flex-direction: row;
}

.service-item.left-img {
    flex-direction: row-reverse;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInList 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    text-align: left;
}

@keyframes fadeInList {
    to {
        opacity: 1;
    }
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.3;
    color: #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list li:hover {
    transform: translateX(4px);
    color: #222;
}

.service-list li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: #f2b600;
    margin-top: 0px;
    transition: fill 0.3s ease;
}

.service-list li:hover svg {
    fill: #d6a200;
}

.info-note {
    text-align: center;
    padding: 20px 15px;
    background-color: #fff8e1;
    color: #444;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    margin: 0 auto 0px;
    max-width: 800px;
    border-left: 4px solid #f2b600;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    h1 {
        font-size: 1.4rem;
    }

    .blog-post h2 {
        font-size: 1.1rem;
    }

    .blog-post img {
        height: 300px;
    }

    .blog-post p {
        font-size: 0.95rem;
    }

    .service-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .service-item .service-text,
    .service-item .service-img {
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .service-item .service-text p {
        font-size: 1rem;
    }

    .service-item .service-text h2 {
        font-size: 1.2rem;   
    }

    .info-note {
        font-size: 0.95rem;
        padding: 15px 10px;
    }
}