﻿.contact-section {
    display: flex;
    min-height: 100vh;
}

.contact-left {
    flex: 1;
    padding: 150px 60px;
    color: black;
    font-weight: 600;
    /*    background: #555;*/
    background: url(../images/bg-1.png);
}

    .contact-left h2 {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .contact-left ul {
        list-style: none;
        padding: 0;
    }

    .contact-left li {
        margin: 20px 0;
        font-size: 16px;
    }

.icon {
    margin-right: 15px;
    color: #f96a2e;
    /*    font-size: 20px;*/
}

.contact-right {
    flex: 1;
    padding: 150px 77px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-right h2 {
        margin-bottom: 30px;
        font-size: 24px;
        color: #333;
    }

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 20px;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    outline: none;
}

textarea {
    resize: vertical;
    height: 120px;
}

.email-link {
    color: black;
    text-decoration: none;
}

.email-link:hover {
    color: black;
    text-decoration: underline;
}

/*button {
    width: fit-content;
    background: #ff6a00;
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

    button:hover {
        background: #e65c00;
    }
*/