/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

header {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

header .logo-section {
    text-align: left;
}

header img {
    max-width: 260px;
    height: 55px;
}

.slogan {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.order-link {
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.van-container {
    width: 200px;
    height: auto;
    position: relative;
}

.van-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.main-section {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point {
    display: flex;
    align-items: center;
}

.point img {
    width: 130px;
    height: auto;
    margin-right: 20px;
}

.point p {
    flex: 1;
    font-size: 16px;
    color: #333;
}

.bold-gray {
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
    font-size: 18px;
}

.order-button-bottom {
    text-align: center;
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 20px 30px;
    background-color: #e0e0e0;
    border-radius: 10px;
}

footer a {
    color: #ff6600;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

/* Formularz kontaktowy */
form {
    margin-top: 20px;
}

form label {
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

form button:hover {
    background-color: #e65c00;
}
