.contact-container {
    /* max-width: 1440px; */
    /* margin: 0 auto; */
    padding: 100px 20px 0 20px;
    display: grid;
    /* gap: 4rem; */
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    max-width: 1031px;
    margin-top: 50px;
    color: #051525;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #0066cc;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    align-self: flex-end;
    padding: 1rem 3rem;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0052a3;
}

.info-section {
    align-self: center;
    display: flex;
    justify-content: flex-end;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #051525;
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    justify-self: flex-end;
    justify-items: flex-end;
    width: 544px;
    margin-top: 100px;
}


@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form  {
        width: 100%;
    }
    .info-text {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 4rem 1rem;
    }

    .form-title {
        font-size: 2rem;
    }
}


.contact-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.contact-label {
    font-size: 16px;
    color: #051525;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 16px;
    color: #051525;
}
.contact-section h2 {
    font-size: 50px;
    font-weight: 400;
    color: #051525;
}

.hours-section h2 {
    margin-bottom: 2rem;
    font-size: 50px;
    font-weight: 400;
    color: #051525;
    margin-top: 100px;
}

.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.hours-table td {
    padding: 1rem 0;
}

.hours-table td:last-child {
    text-align: right;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}