body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #E0E0E0;
}

header .navbar-email {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #4CAF4F;
    font-weight: 600;
}

header .navbar-email img {
    margin-right: 0.5rem;
    width: 20px;
    height: auto;
}

header nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

header nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #4CAF4F;
}

header .btn-order {
    background-color: #4CAF4F;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

header .btn-order:hover {
    background-color: #79C37B;
}


.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #EBEBEB;
    position: relative;
}

.hero img {
    position: absolute;
    right: 10%;
    top: 20%;
    max-width: 30%;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 600;
    color: #4CAF4F;
    text-shadow: 2px 2px #79C37B;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-content .btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: #4CAF4F;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-content .btn-primary:hover {
    background-color: #79C37B;
}


.question-section {
    background-color: #4CAF4F; 
    background-image: url('../images/znaki_zapytania.png');
    background-repeat: repeat;
    background-size: 700px; 
    position: relative; 
    padding: 2rem 0;
    text-align: center;
}

.question-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(76, 175, 79, 0.7); 
    z-index: 1; 
}

.question-section h2 {
    position: relative;
    z-index: 2; 
    color: #ffffff; 
    font-size: 28px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    margin: 0;
}

.steps-section {
    padding: 2rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.steps-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF4F;
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap; 
    padding: 0 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    padding: 1rem;
    flex: 1 1 calc(25% - 1rem); 
    max-width: 200px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.step-icon img {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4CAF4F;
}

.step p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}


footer {
    background-color: #4CAF4F;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
}

footer p {
    margin: 0;
}


form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #EBEBEB;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form label {
    font-weight: 600;
}

form input, form textarea, form button {
    font-size: 16px;
    padding: 0.75rem;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #4CAF4F;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #79C37B;
}


.intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: #FFFFFF;
}

.intro-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;  
    margin: 0 auto;
}

.intro-image img {
    max-width: 100%; 
    min-width: 450px;
    height: auto;
    max-height: 450px; 
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.intro-text {
    max-width: 40%;
    font-family: 'Inter', sans-serif;
}

.intro-text h1 {
    font-size: 36px; 
    font-weight: 700;
    color: #4CAF4F;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
}

.description {
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
}

.header3 {
    background-color: #4CAF4F;
    color: #FFFFFF;
    font-size: 22px;
    padding: 1px;
    text-align: center;
}