/* Stylizacja całego dokumentu */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    width: 100%;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.stripe-container {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.stripe {
    padding: 10px 20px;
    cursor: pointer;
}

.stripe a {
    color: white;
    text-decoration: none;
}

.stripe:hover {
    background-color: #555;
}

#logo {
    display: flex;
    align-items: center;
}

#logo_logo {
    height: 40px;
}

/* Stylizacja formularza */
#form-container {
    margin: 120px auto;
    width: 95%; /* Nearly full width */
    max-width: 1800px;
    padding: 40px; /* Increased padding for better aesthetics */
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

#form-container form {
    display: flex;
    flex-direction: column;
}

#form-container label {
    margin: 10px 0 5px;
}

#form-container input[type="text"],
#form-container input[type="email"],
#form-container input[type="tel"],
#form-container textarea {
    padding: 15px; /* Increased padding for inputs */
    margin-bottom: 15px; /* Increased margin for better spacing */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px; /* Increased font size for better readability */
}

#form-container textarea {
    resize: vertical;
}

#form-container input[type="checkbox"] {
    margin-right: 10px;
}

#form-container button {
    padding: 15px; /* Increased padding for buttons */
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px; /* Increased margin for better spacing */
    font-size: 16px; /* Increased font size for better readability */
}

#form-container button:hover {
    background-color: #555;
}

/* Stylizacja stopki */
#footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
}

#footer > #left {
    flex: 1;
    text-align: left;
    margin-left: 30px;
}

#footer > #right {
    flex: 1;
    text-align: right;
    margin-right: 30px;
}

a {
    text-decoration: none;
    color: white;
}

/* Stylizacja FAQ */
#faq-container {
    margin: 100px 0;
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-post {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.5;
}

/* Animacja */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stylizacja Partnerzy */
#partners-container {
    margin: 100px 0;
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-post {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.partner-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.partner-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.partner-name {
    font-weight: bold;
    font-size: 18px;
}

.partner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}

/* Stylizacja sliderów */
.slider-section {
    margin: 50px 0;
    width: 80%;
    max-width: 1200px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.slide p {
    margin: 10px 0 0;
    font-size: 16px;
}

/* Stylizacja nawigacji slidera */
.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.slider-nav button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 10px;
}

.slider-nav button:hover {
    background-color: #555;
}


#partners-container {
    margin: 100px 0;
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-post {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.partner-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.partner-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.partner-name {
    font-weight: bold;
    font-size: 18px;
}

.partner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}

.partner-description {
    font-size: 16px;
    line-height: 1.5;
}

section {
    margin-bottom: 40px;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    line-height: 1.5;
    margin-bottom: 20px;
}

main {
    margin-top: 80px; /* Przestrzeń na menu */
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


/* Stylizacja sekcji O nas */
#about-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px;
    padding: 20px;
}

/* Stylizacja sekcji Misja */
#mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px;
    padding: 20px;
}

/* Stylizacja sekcji Zespół */
#team {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px;
    padding: 20px;
}

.team-member {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1 0 150px;
    max-width: 150px;
}

.team-member img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.2;
}


main {
    margin-top: 80px; /* Przestrzeń na menu */
    width: 100%;
    padding: 20px;
}

/* Stylizacja sekcji Blog */
#blog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 0;
    padding: 20px;
}

.article {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 20px rgb(194, 110, 0);
    border-radius: 10px;
    text-align: left;
    border: inset 2px orange;
}

.article img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.article h2 {
    margin-bottom: 10px;
}

.article p {
    margin-bottom: 10px;
}

.article .read-more {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.article .read-more:hover {
    text-decoration: underline;
}

main {
    margin-top: 80px; /* Przestrzeń na menu */
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 100px;
}

#single-article {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#single-article img {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin-bottom: 20px;
}

#single-article h1 {
    margin-bottom: 20px;
}

#single-article p {
    line-height: 1.5;
    margin-bottom: 20px;
}

.article1_important
{
    background-color: antiquewhite;
    font-weight: 900;
    padding: 10px;
    border: inset 5px black;
}

li
{
    margin:25px;
}

strong
{
    color:rgb(143, 1, 1);
    font-size: 20px;
    font-style: italic;
}
header {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #logo img {
    max-width: 150px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Stylizacja sekcji hero - baner */
#hero {
    background-image: url('zdj6.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Pełna wysokość ekranu */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    position: relative;
    text-align: center;
}

#hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Przyciemnienie tła */
}


.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #f90;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

.cta-button:hover {
    background-color: #e68a00;
}

/* Stylizacja sekcji 'about' */
#about {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#about h2 {
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.about-box {
    max-width: 300px;
    text-align: center;
}

.about-box img {
    max-width: 100px;
    margin-bottom: 20px;
}

/* Stylizacja sekcji 'services' */
#services {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}
#services h2 {
    margin-bottom: 40px;    
}

.service-box {
    max-width: 300px;
    text-align: center;
    float: left;
}

.service-box img {
    max-width: 100px;
    margin-bottom: 20px;
}

/* Stylizacja sekcji 'contact' */
#contact {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.cta-button {
    display: inline-block;
}


