* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 90px auto 50px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    /* margin-top: 90px; */
}

.left-section {
    padding-right: 40px;
}

.right-section {
    padding-left: 40px;
}

h2 {
    font-size: 32px;
    color: #4a4a4a;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: lowercase;
}

.location-info {
    color: #313131;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.follow-section h2 {
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #555;
}

.copyright {
    color: #333;
    font-size: 14px;
    margin-top: 15px;
}

.copyright a {
    color: #333;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: none;
    background-color: #e8e8e8;
    color: #302f2f;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: background-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: #ddd;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 40px;
    background-color: white;
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: capitalize;
}

.submit-btn:hover {
    background-color: #333;
    color: white;
    border-color: #333;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-section,
    .right-section {
        padding: 0;
    }

    h2 {
        font-size: 28px;
    }
}

.error-message {
    display: none;
    color: red;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}