#in-kind-donations {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.in-kind-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.in-kind-header p {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

.in-kind-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.in-kind-item {
    flex: 1 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.in-kind-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.in-kind-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.in-kind-contact {
    margin-top: 20px;
}

.in-kind-contact button {
    padding: 10px 20px;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.in-kind-contact button:hover {
    background-color: #d35400;
}

@media (max-width: 768px) {
    .in-kind-item {
        flex: 1 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .in-kind-header h2 {
        font-size: 28px;
    }

    .in-kind-header p {
        font-size: 16px;
    }

    .in-kind-item h3 {
        font-size: 20px;
    }

    .in-kind-item p {
        font-size: 14px;
    }

    .in-kind-contact button{
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .in-kind-item {
        flex: 1 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}
