body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    position: sticky;
    top: 0;
    background-color: #3273a8;
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-info {
    color: white;
    text-decoration: none;
    text-align: left;
}

.header-info h1 {
    margin: 0;
    font-size: 18px;
}

.header-info p {
    margin: 0;
    font-size: 14px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

nav ul a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0 15px;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.8s, color 0.8s;
    display: inline-block;
}

nav ul li {
    transition: background-color 0.8s, color 0.8s;
}

nav ul li:hover a {
    background-color: white;
    color: #3273a8;
}

.hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.cta-button {
    background-color: #3273a8;
    color: white;
    font-size: 1.5rem;
    border: none;
    padding: 30px 60px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: 2px solid white;
}

.cta-button:hover {
    background-color: #285a8b;
}

@media(max-width: 768px) {
    .cta-button {
        font-size: 1.2rem;
        padding: 5px 10px;
        transition: background-color 0.3s;
        border: 1px solid white;
    }
}

.achievements {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.achievements-heading {
    font-size: 24px;
    margin-bottom: 20px;
}

.blue-text {
    color: #3273a8;
}

.black-text {
    color: #000000;
}

.features {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.feature-block {
    flex: 1;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-block i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #3273a8;
}

.feature-block h3 {
    margin: 10px 0;
    font-size: 18px;
}

.about-me {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: left;
}

.about-me-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-me-text h2 {
    font-size: 28px;
    color: #3273a8;
    text-align: center;
    margin-bottom: 20px;
}

.about-me-photo {
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
}

.about-me-paragraph {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
}

footer .social-media a {
    color: #3273a8;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .hero-img {
        height: auto;
    }

    .hero-overlay {
        width: 90%;
    }

    nav ul {
        justify-content: center;
    }

    .header-info {
        text-align: center;
        width: 100%;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .about-me {
        text-align: center;
    }

    .about-me-text h2 {
        font-size: 24px;
    }

    .about-me-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .about-me-paragraph {
        font-size: 14px;
    }
}

.importance-of-personalized-plan {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.importance-of-personalized-plan h2 {
    font-size: 24px;
    color: #3273a8;
    margin-bottom: 20px;
}

.importance-of-personalized-plan p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

@media (max-width: 768px) {
    .importance-of-personalized-plan h2 {
        font-size: 22px;
    }

    .importance-of-personalized-plan p {
        font-size: 14px;
        padding: 0 20px;
    }
}

.training-plan-process {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.training-plan-process h2 {
    font-size: 24px;
    color: #3273a8;
    margin-bottom: 20px;
}

.process-list {
    list-style-type: disc;
    margin: 0;
    padding: 0;
    text-align: left;
    display: inline-block;
    max-width: 800px;
    width: 100%;
}

.process-list li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .training-plan-process h2 {
        font-size: 22px;
    }

    .process-list li {
        font-size: 14px;
        margin-left: 15px;
    }
}

.custom-image-section {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 40px 0; /* Add some margin to separate from other sections */
}

.custom-image-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal-training {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.personal-training h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.benefit {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.8s;
    cursor: pointer;
}

.benefit h3 {
    font-size: 20px;
    color: #3273a8;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 16px;
    color: #555;
}
.benefit:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}

.about-me-text {
    max-width: 75%;
    margin: 0 auto;
    text-align: justify;
}

.a_none {
    text-decoration: none;
}

.online-coaching {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.online-coaching h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit {
    width: 80%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.8s ease;
    margin: 0 0 20px 0;
    text-align: center;
}

.benefit:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.benefit h3 {
    font-size: 20px;
    color: #3273a8;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 16px;
    color: #555;
}

.online-training {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    color: #3273a8;
    margin-bottom: 30px;
}

.section-content {
    line-height: 1.6;
}

.online-training p {
    margin-bottom: 20px;
}

/* Dodatkowe style, aby tekst był czytelniejszy na mniejszych ekranach */
@media (max-width: 768px) {
    .section-content {
        font-size: 16px;
    }
}

.logo {
    display: inline-block;
    margin-top: 2px;
    height: 38px;
}

.header-wrapper {
    display: inline-block;
}

.header-wrapper > h1 {
    padding-top: 0; 
}

.order-plan p {
    width: 50%;
    margin: auto;
    text-align: justify;
    margin-top: 10px;
} 

.form-group {
    margin-bottom: 15px;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], input[type="email"], select {
    width: 80%;
    padding: 10px;
    display: block;
    margin: auto;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

select {
    appearance: none;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #45a049;
}

/* New .order-form styles */
.order-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-form h2 {
    color: #3273a8;
    margin-bottom: 20px;
    text-align: center;
}

.order-form form {
    display: flex;
    flex-direction: column;
}

.order-form label {
    margin-bottom: 5px;
}

.order-form input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    background-color: #3273a8;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #285a8a;
}

body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    position: sticky;
    top: 0;
    background-color: #3273a8;
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-info {
    color: white;
    text-decoration: none;
    text-align: left;
}

.header-info h1 {
    margin: 0;
    font-size: 18px;
}

.header-info p {
    margin: 0;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0 15px;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.8s, color 0.8s;
    display: inline-block;
}

.nav-list li {
    transition: background-color 0.8s, color 0.8s;
}

.nav-list li:hover a {
    background-color: white;
    color: #3273a8;
}

@media (max-width: 768px) {
    .header-info {
        text-align: center;
        width: 100%;
    }

    .nav {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 20px;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        background-color: #3273a8;
        padding: 0 20px;
        /* border-radius: 5px; */
        position: absolute;
        top: 100%;
        left: 0;
        transition: 0.8s;
        right: 0;
    }

    .nav-list.open {
        display: flex;
        border-bottom: white 2px solid;
        border-top: white 2px solid;
    }

    .nav-list a {
        margin: 10px 0;
    }

    .nav-list li { 
        border-bottom: 2px solid white;
    }

    .nav-list li:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 768px) {
    .feature-block {
        width: 70%;
    }
}

.references {
    width: 100%;
    margin-top: 40px;
    background-color: #efefef;
}

.references h2 {
    text-align: center;
    color: #3273a8;
    padding-top: 20px;
}

.references-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.reference-card {
    width: 350px;
    min-height: 400px;
    border: 3px solid #3273a8;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-sizing: border-box;
    margin: 30px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(50, 115, 168, 1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(50, 115, 168, 1);
    box-shadow: 0px 0px 8px 0px rgba(50, 115, 168, 1);
    text-align: center;
}
.reference-card h3 {
    color: #3273a8;
    margin: 0;
    text-align: center;
    font-size: 30px;
}
.reference-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.reference-card p {
    color: black;
    text-align: justify;
    font-style: italic;
    width: 80%;
    margin: auto;
}
.reference-card hr {
    width: 50%;
    margin: 20px auto;
}
.reference-card .author {
    font-size: 1.2rem;
    text-align: center;
}
.reference-card .instagram {
    text-align: center;
}
@media (max-width: 768px) {
    .reference-card {
        margin: 10px;
    }
}

.instagram a {
    text-decoration: none;
    color: #000;
}

form label {
    text-align: center;
}

.g-recaptcha * {
    margin: auto;
    /* display: ; */
}

.bot-error {
    color: red;
}

#rc-anchor-container {
    margin: auto;
}

.confirmation {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 500px;
}

.bold {
    font-weight: bold;
}

.join-online-section p {
    width: 80%;
    margin: auto;
}


.rodo {
    font-size: 0.8rem;
}