#contact-info
{
    font-size: 20px;
}

#contact-info h1
{
    color: #D0D000;
}


#contact-container
{
    margin-top: 50px;
    display: flex;
    gap: 80px;
    animation: fadeIn 0.8s ease-in;
}
@media (max-width: 768px) {
    #contact-container {
        flex-direction: column;  /* ← DODAJ TO */
        gap: 20px;  /* ← Zmniejsz gap */
        margin-top: 20px;
    }
}

.form-row {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
}

.form-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
    margin-bottom: 20px;
    border: none;
    background-color: #f5f5f5;
    font-size: 14px;
    font-family: Arial, sans-serif;
    border-radius: 4px;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input::placeholder, textarea::placeholder {
    color: #999;
}

button {
    background-color: #c9a961;  /* Beżowy kolor jak na zdjęciu */
    color: white;
    padding: 12px 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

button:hover {
    background-color: #b89850;
}

/* Responsywne - na urządzeniach mobilnych */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row input {
        margin-bottom: 20px;
    }
}

#location
{
    width: 100%;
    margin-top: 80px;
    margin-bottom: 100px;
    min-height: 800px;
}
#location iframe
{
    width: 100%;
    height: 100%;
}

#banking-data
{
    font-size: 20px;
    animation: fadeIn 0.8s ease-in;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated-text
{
    animation: slideInLeft 1s ease-out;
}

.paragraph
{
    font-size: 20px;
    width: 100%;
    text-align: justify;
    margin-bottom: 30px;
}

#content-container
{
    width: 60%;
    animation: fadeIn 0.8s ease-in;
}

.services-list {
    list-style-type: square;
    padding-left: 20px;
    text-align: left; 
}

.services-list li {
    margin-bottom: 15px;
}
.services-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 10px;
}

.service-section {
    margin-bottom: 40px;
}

.service-section h3 {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

